tangled
alpha
login
or
join now
trezy.codes
/
quickslice
forked from
slices.network/quickslice
0
fork
atom
Auto-indexing service and GraphQL API for AT Protocol Records
0
fork
atom
overview
issues
pulls
pipelines
docs: fix field variables
chadtmiller.com
3 months ago
56fa16d2
6c98a399
+3
-3
3 changed files
expand all
collapse all
unified
split
README.md
docs
reference
variables.md
tutorial.md
+1
-1
README.md
···
53
53
xyzStatusphereStatus(
54
54
first: 50
55
55
sortBy: [
56
56
-
{ field: "createdAt", direction: DESC }
56
56
+
{ field: createdAt, direction: DESC }
57
57
]
58
58
where: {
59
59
status: { contains: "👍" }
+1
-1
docs/reference/variables.md
···
68
68
where: { status: { eq: $emoji } }
69
69
first: $pageSize
70
70
after: $cursor
71
71
-
sortBy: [{ field: "createdAt", direction: DESC }]
71
71
+
sortBy: [{ field: createdAt, direction: DESC }]
72
72
) {
73
73
edges {
74
74
node {
+1
-1
docs/tutorial.md
···
67
67
query GetStatuses {
68
68
xyzStatusphereStatus(
69
69
first: 20
70
70
-
sortBy: [{ field: "createdAt", direction: DESC }]
70
70
+
sortBy: [{ field: createdAt, direction: DESC }]
71
71
) {
72
72
edges {
73
73
node {