Auto-indexing service and GraphQL API for AT Protocol Records quickslice.slices.network/
atproto gleam graphql

docs: typo

+4 -4
+4 -4
docs/guides/queries.md
··· 87 87 | `lt` | Less than | `{ createdAt: { lt: "2025-06-01T00:00:00Z" } }` | 88 88 | `gte` | Greater than or equal | `{ position: { gte: 1 } }` | 89 89 | `lte` | Less than or equal | `{ position: { lte: 10 } }` | 90 - | `isNull` | Null check | `{ replyParent: { isNull: true } }` | 90 + | `isNull` | Null check | `{ reply: { isNull: true } }` | 91 91 92 92 ### Filtering Ref Fields 93 93 ··· 95 95 96 96 ```graphql 97 97 query { 98 - # Find root posts (no reply parent) 99 - appBskyFeedPost(where: { replyParent: { isNull: true } }) { 98 + # Find root posts (no reply) 99 + appBskyFeedPost(where: { reply: { isNull: true } }) { 100 100 edges { 101 101 node { 102 102 text ··· 109 109 ```graphql 110 110 query { 111 111 # Find replies only 112 - appBskyFeedPost(where: { replyParent: { isNull: false } }) { 112 + appBskyFeedPost(where: { reply: { isNull: false } }) { 113 113 edges { 114 114 node { 115 115 text