forked from datasaur-ai/api-client-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_project_token.json
More file actions
32 lines (32 loc) · 1.09 KB
/
create_project_token.json
File metadata and controls
32 lines (32 loc) · 1.09 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
32
{
"operationName": "LaunchTextProjectMutation",
"variables": {
"input": {
"teamId": 1,
"name": "the little prince",
"documentSettings": {
"allTokensMustBeLabeled": false,
"allowArcDrawing": true,
"allowMultiLabels": true,
"autoScrollWhenLabeling": true,
"textLabelMaxTokenLength": 999999,
"kind": "TOKEN_BASED"
},
"assignees": [
{
"email": "ivan@datasaur.ai"
}
],
"documents": [
{
"name": "the little prince",
"file": null,
"fileName": "littleprince.txt",
"settings": {}
}
],
"labelSetIDs": []
}
},
"query": "mutation LaunchTextProjectMutation($input: LaunchTextProjectInput!) {\n launchTextProject(input: $input) {\n id\n rootDocumentId\n settings {\n consensus\n enableEditLabelSet\n enableEditSentence\n __typename\n }\n __typename\n }\n}\n"
}