CRUDSchemaField
@fullTextSearch
Use the @fullTextSearch to enable full text search (fuzzy search) on a field.
This directive requires the @searchable directive to be enabled on the type.
@searchable
Example
type User @crudType @searchable {
name: String! @fullTextSearch
}In this case, the name field will be available for full text search via typesense.