Skip to content

Commit

Permalink
fix schema.graphql
Browse files Browse the repository at this point in the history
  • Loading branch information
hustlernik committed Feb 4, 2025
1 parent 00d66e9 commit ab21cf8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ type AuthData {
user: User!
}

scalar BigInt

type CheckIn {
_id: ID!
allotedRoom: String
Expand Down Expand Up @@ -1269,6 +1271,16 @@ type EventPg {
): EventVenuesConnectionPg
}

type EventVenuesConnectionPg {
edges: [EventVenuesConnectionEdgePg]
pageInfo: PageInfoPg!
}

type EventVenuesConnectionEdgePg {
node: VenuePg!
cursor: String!
}

type VenuePg {
id: ID!
name: String!
Expand Down Expand Up @@ -1484,6 +1496,11 @@ type PostUpVotersConnectionPg {
pageInfo: PageInfoPg!
}

type PostUpVotersConnectionEdgePg {
cursor: String!
node: UserPg
}

type PostDownVotersConnectionPg {
edges: [PostDownVotersConnectionEdgePg]
pageInfo: PageInfoPg!
Expand All @@ -1504,6 +1521,16 @@ type CommentUpVotersConnectionPg {
pageInfo: PageInfoPg!
}

type CommentDownVotersConnectionPg {
edges: [CommentDownVotersConnectionEdgePg]
pageInfo: PageInfoPg!
}

type CommentDownVotersConnectionEdgePg {
cursor: String!
node: UserPg
}

type PostAttachmentPg {
mimeType: String
url: String
Expand Down

0 comments on commit ab21cf8

Please sign in to comment.