diff --git a/schema.graphql b/schema.graphql index de65479..ca96fd7 100644 --- a/schema.graphql +++ b/schema.graphql @@ -1,7 +1,7 @@ type Task { id: ID! - title: String! - completed: Boolean! + title: String! @search(by: [fulltext]) + completed: Boolean! @search user: User! }