Created
February 2, 2021 06:26
-
-
Save yyyyaaa/66e2931243bc4767c38cf42598f28613 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query getUsersQuery($first: Int, $last: Int, $after: Cursor, $before: Cursor, $offset: Int, $condition: UserCondition, $filter: UserFilter, $orderBy: [UsersOrderBy!]) { | |
users( | |
first: $first | |
last: $last | |
offset: $offset | |
after: $after | |
before: $before | |
condition: $condition | |
filter: $filter | |
orderBy: $orderBy | |
) {totalCount, pageInfo { | |
hasNextPage | |
hasPreviousPage | |
endCursor | |
startCursor | |
}, nodes { | |
id | |
type | |
connectedAccountsByOwnerId(first: 3) {nodes { | |
id | |
ownerId | |
service | |
identifier | |
details | |
isVerified | |
}} | |
emailsByOwnerId(first: 3) {nodes { | |
id | |
ownerId | |
isVerified | |
isPrimary | |
}} | |
phoneNumbersByOwnerId(first: 3) {nodes { | |
id | |
ownerId | |
cc | |
number | |
isVerified | |
isPrimary | |
}} | |
cryptoAddressesByOwnerId(first: 3) {nodes { | |
id | |
ownerId | |
address | |
isVerified | |
isPrimary | |
}} | |
invitesBySenderId(first: 3) {nodes { | |
id | |
senderId | |
inviteToken | |
inviteValid | |
inviteLimit | |
inviteCount | |
multiple | |
data | |
expiresAt | |
createdAt | |
}} | |
claimedInvitesBySenderId(first: 3) {nodes { | |
id | |
data | |
senderId | |
receiverId | |
createdAt | |
}} | |
claimedInvitesByReceiverId(first: 3) {nodes { | |
id | |
data | |
senderId | |
receiverId | |
createdAt | |
}} | |
authAccountsByOwnerId(first: 3) {nodes { | |
id | |
ownerId | |
service | |
identifier | |
details | |
isVerified | |
}} | |
userContacts(first: 3) {nodes { | |
id | |
vcf | |
fullName | |
emails | |
device | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
userId | |
}} | |
userConnectionsByRequesterId(first: 3) {nodes { | |
id | |
accepted | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
requesterId | |
responderId | |
}} | |
userConnectionsByResponderId(first: 3) {nodes { | |
id | |
accepted | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
requesterId | |
responderId | |
}} | |
actionsByOwnerId(first: 3) {nodes { | |
id | |
slug | |
photo | |
title | |
url | |
description | |
discoveryHeader | |
discoveryDescription | |
enableNotifications | |
enableNotificationsText | |
search | |
locationRadius | |
startDate | |
endDate | |
approved | |
rewardAmount | |
activityFeedText | |
callToAction | |
completedActionText | |
alreadyCompletedActionText | |
tags | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
ownerId | |
searchRank | |
}} | |
actionGoalsByOwnerId(first: 3) {nodes { | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
actionId | |
goalId | |
ownerId | |
}} | |
actionResultsByOwnerId(first: 3) {nodes { | |
id | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
actionId | |
ownerId | |
}} | |
userActions(first: 3) {nodes { | |
id | |
actionStarted | |
complete | |
verified | |
verifiedDate | |
userRating | |
rejected | |
rejectedReason | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
userId | |
verifierId | |
actionId | |
}} | |
userActionsByVerifierId(first: 3) {nodes { | |
id | |
actionStarted | |
complete | |
verified | |
verifiedDate | |
userRating | |
rejected | |
rejectedReason | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
userId | |
verifierId | |
actionId | |
}} | |
userActionResults(first: 3) {nodes { | |
id | |
value | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
userId | |
actionId | |
userActionId | |
actionResultId | |
}} | |
userActionItems(first: 3) {nodes { | |
id | |
value | |
status | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
userId | |
actionId | |
userActionId | |
actionItemId | |
}} | |
userPassActions(first: 3) {nodes { | |
id | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
userId | |
actionId | |
}} | |
userSavedActions(first: 3) {nodes { | |
id | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
userId | |
actionId | |
}} | |
userViewedActions(first: 3) {nodes { | |
id | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
userId | |
actionId | |
}} | |
userActionReactions(first: 3) {nodes { | |
id | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
userActionId | |
userId | |
reacterId | |
actionId | |
}} | |
userActionReactionsByReacterId(first: 3) {nodes { | |
id | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
userActionId | |
userId | |
reacterId | |
actionId | |
}} | |
userMessagesBySenderId(first: 3) {nodes { | |
id | |
type | |
content | |
upload | |
received | |
receiverRead | |
senderReaction | |
receiverReaction | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
senderId | |
receiverId | |
}} | |
userMessagesByReceiverId(first: 3) {nodes { | |
id | |
type | |
content | |
upload | |
received | |
receiverRead | |
senderReaction | |
receiverReaction | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
senderId | |
receiverId | |
}} | |
messagesBySenderId(first: 3) {nodes { | |
id | |
type | |
content | |
upload | |
createdBy | |
updatedBy | |
createdAt | |
updatedAt | |
senderId | |
groupId | |
}} | |
usersByClaimedInviteSenderIdAndReceiverId(first: 3) {nodes { | |
id | |
type | |
}} | |
usersByClaimedInviteReceiverIdAndSenderId(first: 3) {nodes { | |
id | |
type | |
}} | |
}} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment