We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 355c046 commit 7403786Copy full SHA for 7403786
1 file changed
graphile/graphile-postgis/README.md
@@ -193,14 +193,14 @@ await orm.telemedicineClinic
193
194
#### Through GraphQL
195
196
-PostGraphile exposes the same shape on its connection argument. The
197
-ORM calls it `where:`; raw PostGraphile calls it `filter:` — that's the
198
-generated schema's name, not ours. Both accept the same tree:
+The connection argument is `where:` at the GraphQL layer too — same
+name, same tree. Only the generated input **type** keeps the word
+"Filter" in it (e.g. `TelemedicineClinicFilter`):
199
200
```graphql
201
{
202
telemedicineClinics(
203
- filter: { county: { some: { name: { equalTo: "Bay County" } } } }
+ where: { county: { some: { name: { equalTo: "Bay County" } } } }
204
) {
205
nodes { id name }
206
}
0 commit comments