diff --git a/src/schema.ts b/src/schema.ts index acd7509..42d0d83 100644 --- a/src/schema.ts +++ b/src/schema.ts @@ -208,6 +208,7 @@ const StringQueryOperatorInput = builder.inputType("StringQueryOperatorInput", { const CountryFilterInput = builder.inputType("CountryFilterInput", { fields: (t) => ({ code: t.field({ type: StringQueryOperatorInput }), + name: t.field({ type: StringQueryOperatorInput }), currency: t.field({ type: StringQueryOperatorInput }), continent: t.field({ type: StringQueryOperatorInput }), }),