tangled
alpha
login
or
join now
slices.network
/
quickslice
60
fork
atom
Auto-indexing service and GraphQL API for AT Protocol Records
quickslice.slices.network/
atproto
gleam
graphql
60
fork
atom
overview
issues
7
pulls
2
pipelines
docs: typo
chadtmiller.com
2 months ago
956e5158
7d86b1ce
+4
-4
1 changed file
expand all
collapse all
unified
split
docs
guides
queries.md
+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
90
-
| `isNull` | Null check | `{ replyParent: { isNull: true } }` |
90
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
98
-
# Find root posts (no reply parent)
99
99
-
appBskyFeedPost(where: { replyParent: { isNull: true } }) {
98
98
+
# Find root posts (no reply)
99
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
112
-
appBskyFeedPost(where: { replyParent: { isNull: false } }) {
112
112
+
appBskyFeedPost(where: { reply: { isNull: false } }) {
113
113
edges {
114
114
node {
115
115
text