-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathquery.entityLookup.json
More file actions
31 lines (31 loc) · 1.21 KB
/
query.entityLookup.json
File metadata and controls
31 lines (31 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"operationName": "entityLookup",
"query": "query entityLookup ( $accountID:ID! $type:EntityType! $limit:Int $from:Int $entityInput:EntityInput $search:String $entityIDs:[ID!] $sortInput:[SortInput] $lookupFilterInput:[LookupFilterInput] $helperFields:[String!]) {\n\tentityLookup ( accountID:$accountID type:$type limit:$limit from:$from parent:$entityInput search:$search entityIDs:$entityIDs sort:$sortInput filters:$lookupFilterInput helperFields:$helperFields ) {\n\t\titems {\n\t\t\tentity {\n\t\t\t\tid\n\t\t\t\tname\n\t\t\t\ttype\n\t\t\t}\n\t\t\tdescription\n\t\t\thelperFields\n\t\t}\n\t\ttotal\n\t}\t\n}",
"variables": {
"entityIDs": [
"id1",
"id2"
],
"entityInput": {
"id": "id",
"name": "string",
"type": "account"
},
"from": 1,
"helperFields": [
"string1",
"string2"
],
"limit": 1,
"lookupFilterInput": {
"filter": "filterByConnectionTypeFamily",
"value": "string"
},
"search": "string",
"sortInput": {
"field": "string",
"order": "asc"
},
"type": "account"
}
}