Auto-indexing service and GraphQL API for AT Protocol Records

docs: fix field variables

+3 -3
+1 -1
README.md
··· 53 53 xyzStatusphereStatus( 54 54 first: 50 55 55 sortBy: [ 56 - { field: "createdAt", direction: DESC } 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 - sortBy: [{ field: "createdAt", direction: DESC }] 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 - sortBy: [{ field: "createdAt", direction: DESC }] 70 + sortBy: [{ field: createdAt, direction: DESC }] 71 71 ) { 72 72 edges { 73 73 node {