-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.graphql
1609 lines (1341 loc) · 38.1 KB
/
schema.graphql
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
type Query {
plan(
"""The ID of the object"""
id: ID
"""The slug of the object."""
xSlug: String
"""The url of the object."""
url: String
): PlanNode
plans(
"""Search by fields"""
search: String
offset: Int
before: String
after: String
first: Int
last: Int
name: String
name_Icontains: String
): PlanNodeConnection
planOverride(
"""The ID of the object"""
id: ID
"""The slug of the object."""
xSlug: String
"""The url of the object."""
url: String
): PlanOverrideNode
planOverrides(
"""Search by fields"""
search: String
offset: Int
before: String
after: String
first: Int
last: Int
plan: ID
): PlanOverrideNodeConnection
usageRecord(
"""The ID of the object"""
id: ID
"""The slug of the object."""
xSlug: String
"""The url of the object."""
url: String
): UsageRecordNode
usageRecords(
"""Search by fields"""
search: String
offset: Int
before: String
after: String
first: Int
last: Int
user: ID
): UsageRecordNodeConnection
usageState(
"""The ID of the object"""
id: ID
"""The slug of the object."""
xSlug: String
"""The url of the object."""
url: String
): UsageStateNode
usageStates(
"""Search by fields"""
search: String
offset: Int
before: String
after: String
first: Int
last: Int
user: ID
): UsageStateNodeConnection
iso639pt2(
"""Optional list of ISO 639-2T codes to filter the results."""
codes_In: [String]
): [LanguageType]
board(
"""The ID of the object"""
id: ID
"""The slug of the object."""
xSlug: String
"""The url of the object."""
url: String
): BoardNode
boards(
"""Search by fields"""
search: String
offset: Int
before: String
after: String
first: Int
last: Int
name: String
name_Icontains: String
created_Gte: DateTime
created_Gt: DateTime
created_Lte: DateTime
created_Lt: DateTime
): BoardNodeConnection
boardMembership(
"""The ID of the object"""
id: ID
"""The slug of the object."""
xSlug: String
"""The url of the object."""
url: String
): BoardMembershipNode
boardMemberships(
"""Search by fields"""
search: String
offset: Int
before: String
after: String
first: Int
last: Int
board: ID
user: ID
created_Gte: DateTime
created_Gt: DateTime
created_Lte: DateTime
created_Lt: DateTime
): BoardMembershipNodeConnection
group(
"""The ID of the object"""
id: ID
"""The slug of the object."""
xSlug: String
"""The url of the object."""
url: String
): GroupNode
groups(
"""Search by fields"""
search: String
offset: Int
before: String
after: String
first: Int
last: Int
created_Gte: DateTime
created_Gt: DateTime
created_Lte: DateTime
created_Lt: DateTime
): GroupNodeConnection
expression(
"""The ID of the object"""
id: ID
"""The slug of the object."""
xSlug: String
"""The url of the object."""
url: String
): ExpressionNode
expressions(
"""Search by fields"""
search: String
offset: Int
before: String
after: String
first: Int
last: Int
board: ID
created_Gte: DateTime
created_Gt: DateTime
created_Lte: DateTime
created_Lt: DateTime
rating: Int
rating_Gte: Int
rating_Lte: Int
): ExpressionNodeConnection
thread(
"""The ID of the object"""
id: ID!
): ThreadNode
"""Search for fruits by label, case-insensitive."""
searchFruits(search: String!): [FruitType]
"""Retrieve a list of fruits with optional disabled state."""
fruits: [FruitType]
"""Retrieve a fruit by its value."""
fruit(value: String!): FruitType
"""Check if the username is available"""
isUsernameAvailable(value: String!): Boolean
"""Authenticated greeting"""
authHello: String
"""The current time"""
time: DateTime
"""Retrieve OAuth2 authentication URLs for various providers"""
oAuth2Links(
"""Resource identifier for the OAuth2 provider"""
resource: String!
"""Additional state payload for OAuth2 authentication"""
additionalStatePayload: String
): OAuth2LinksProvider
viewer: UserNode
node(
"""The ID of the object"""
id: ID!
): Node
}
type PlanNode implements SearchNode & Node {
"""The date and time at which the object was created."""
created: DateTime!
"""The date and time at which the object was last updated."""
updated: DateTime!
"""The ID of the object"""
id: ID!
"""
The name of the plan, for instance "Basic Plan"
"""
name: String!
"""The maximum number of expressions allowed to be created in the plan."""
maxExpressions: Int
"""
The maximum number of characters allowed in the plan. This is used to apply limits to voice synthesis.
"""
maxCharacters: Int
"""
The maximum number of tokens allowed in the plan. This is used to apply limits to text generation and explanation.
"""
maxTokens: Int
"""The maximum number of boards allowed in the plan."""
maxBoards: Int
"""The interval at which the usage limits are reset."""
resetInterval: BillingPlanResetIntervalChoices!
"""
The version of the plan. It is critical to create a new version of the plan when changing the limits instead of updating the plan directly.
"""
version: Int!
"""
The current override for the plan. This is used to apply temporary changes to the plan limits, for instance a Christmas promotion.
"""
currentOverride: PlanOverrideNode
"""
The reason for the termination of the plan. This is used to track the reason a plan was terminated, for instance "User requested cancellation".
"""
terminationReason: String
"""The plan the user is subscribed to."""
users(offset: Int, before: String, after: String, first: Int, last: Int, firstName: String, firstName_Icontains: String, lastName: String, lastName_Icontains: String, email: String, email_Icontains: String, username: String, username_Icontains: String, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime): UserNodeConnection!
"""The plan to override the limits of."""
overrides(offset: Int, before: String, after: String, first: Int, last: Int, plan: ID): PlanOverrideNodeConnection!
"""
The plan the current usage is for. This should never be set manually, but through signals on User.plan changes.
"""
usagesStates(offset: Int, before: String, after: String, first: Int, last: Int, user: ID): UsageStateNodeConnection!
}
interface SearchNode {
"""The ID of the object"""
id: ID!
}
"""An object with an ID"""
interface Node {
"""The ID of the object"""
id: ID!
}
"""
The `DateTime` scalar type represents a DateTime
value as specified by
[iso8601](https://en.wikipedia.org/wiki/ISO_8601).
"""
scalar DateTime
"""An enumeration."""
enum BillingPlanResetIntervalChoices {
"""Monthly"""
MONTHLY
}
type PlanOverrideNode implements SearchNode & Node {
"""The date and time at which the object was created."""
created: DateTime!
"""The date and time at which the object was last updated."""
updated: DateTime!
"""The ID of the object"""
id: ID!
"""The plan to override the limits of."""
plan: PlanNode!
"""The start date of the override."""
startDate: Date!
"""The end date of the override. Not compulsary but strongly recommended."""
endDate: Date
"""
The maximum number of expressions allowed to be created in the plan, overrides the plan limit.
"""
maxExpressions: Int
"""
The maximum number of characters allowed in the plan, overrides the plan limit.
"""
maxCharacters: Int
"""
The maximum number of tokens allowed in the plan, overrides the plan limit.
"""
maxTokens: Int
"""
The maximum number of boards allowed in the plan, overrides the plan limit.
"""
maxBoards: Int
currentPlan: PlanNode
}
"""
The `Date` scalar type represents a Date
value as specified by
[iso8601](https://en.wikipedia.org/wiki/ISO_8601).
"""
scalar Date
type UserNodeConnection {
"""The total number of items in the connection."""
count: Int!
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [UserNodeEdge]!
}
"""
The Relay compliant `PageInfo` type, containing data necessary to paginate this connection.
"""
type PageInfo {
"""When paginating forwards, are there more items?"""
hasNextPage: Boolean!
"""When paginating backwards, are there more items?"""
hasPreviousPage: Boolean!
"""When paginating backwards, the cursor to continue."""
startCursor: String
"""When paginating forwards, the cursor to continue."""
endCursor: String
}
"""A Relay edge containing a `UserNode` and its cursor."""
type UserNodeEdge {
"""The item at the end of the edge"""
node: UserNode
"""A cursor for use in pagination"""
cursor: String!
}
type UserNode implements Node {
lastLogin: DateTime
"""
Designates that this user has all permissions without explicitly assigning them.
"""
isSuperuser: Boolean!
"""
The groups this user belongs to. A user will get all permissions granted to each of their groups.
"""
groups(offset: Int, before: String, after: String, first: Int, last: Int, name: String): UserGroupNodeConnection!
"""Specific permissions for this user."""
userPermissions(offset: Int, before: String, after: String, first: Int, last: Int): PermissionNodeConnection!
"""Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only."""
username: String!
firstName: String!
lastName: String!
email: String!
"""Designates whether the user can log into this admin site."""
isStaff: Boolean!
"""
Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
"""
isActive: Boolean!
dateJoined: DateTime!
"""The date and time at which the object was created."""
created: DateTime!
"""The date and time at which the object was last updated."""
updated: DateTime!
"""The ID of the object"""
id: ID!
"""The plan the user is subscribed to."""
plan: PlanNode
"""The current usage of the user."""
currentUsageState: UsageStateNode
profilePicture: String
preferences: UserPreferencesNode
boardMemberships(offset: Int, before: String, after: String, first: Int, last: Int, board: ID, user: ID, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime): BoardMembershipNodeConnection!
boards(offset: Int, before: String, after: String, first: Int, last: Int, name: String, name_Icontains: String, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime): BoardNodeConnection!
defaultBoard: BoardNode
expressionCreated(offset: Int, before: String, after: String, first: Int, last: Int, board: ID, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime, rating: Int, rating_Gte: Int, rating_Lte: Int): ExpressionNodeConnection!
"""The user the current usage is for."""
allUsages(offset: Int, before: String, after: String, first: Int, last: Int, user: ID): UsageStateNodeConnection!
"""The user the usage record is for."""
usageRecords(offset: Int, before: String, after: String, first: Int, last: Int, user: ID): UsageRecordNodeConnection!
}
type UserGroupNodeConnection {
"""The total number of items in the connection."""
count: Int!
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [UserGroupNodeEdge]!
}
"""A Relay edge containing a `UserGroupNode` and its cursor."""
type UserGroupNodeEdge {
"""The item at the end of the edge"""
node: UserGroupNode
"""A cursor for use in pagination"""
cursor: String!
}
type UserGroupNode implements Node {
"""The ID of the object"""
id: ID!
name: String!
permissions(offset: Int, before: String, after: String, first: Int, last: Int): PermissionNodeConnection!
"""
The groups this user belongs to. A user will get all permissions granted to each of their groups.
"""
userSet(offset: Int, before: String, after: String, first: Int, last: Int, firstName: String, firstName_Icontains: String, lastName: String, lastName_Icontains: String, email: String, email_Icontains: String, username: String, username_Icontains: String, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime): UserNodeConnection!
}
type PermissionNodeConnection {
"""The total number of items in the connection."""
count: Int!
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [PermissionNodeEdge]!
}
"""A Relay edge containing a `PermissionNode` and its cursor."""
type PermissionNodeEdge {
"""The item at the end of the edge"""
node: PermissionNode
"""A cursor for use in pagination"""
cursor: String!
}
type PermissionNode implements Node {
"""The ID of the object"""
id: ID!
name: String!
codename: String!
groupSet(offset: Int, before: String, after: String, first: Int, last: Int, name: String): UserGroupNodeConnection!
"""Specific permissions for this user."""
userSet(offset: Int, before: String, after: String, first: Int, last: Int, firstName: String, firstName_Icontains: String, lastName: String, lastName_Icontains: String, email: String, email_Icontains: String, username: String, username_Icontains: String, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime): UserNodeConnection!
}
type UsageStateNode implements SearchNode & Node {
"""The date and time at which the object was created."""
created: DateTime!
"""The date and time at which the object was last updated."""
updated: DateTime!
"""The ID of the object"""
id: ID!
"""The user the current usage is for."""
user: UserNode!
"""
The plan the current usage is for. This should never be set manually, but through signals on User.plan changes.
"""
plan: PlanNode!
"""
The previous usage state. This is used to track the history of the user usage.
"""
previousState: UsageStateNode
"""
The start date of the current period. This is used to reset the usage limits at the end of the period.
"""
periodStart: Date!
"""
The end date of the period. It represents the first day this State will be invalid. This is used to reset the usage limits at the end of the period.
"""
periodEnd: Date!
"""The number of tokens used in the current period."""
usedTokens: Int!
"""The number of characters used in the current period."""
usedCharacters: Int!
"""The number of expressions used in the current period."""
usedExpressions: Int!
"""The number of tokens remaining in the current period."""
remainingTokens: Int
"""The number of characters remaining in the current period."""
remainingCharacters: Int
"""The number of expressions remaining in the current period."""
remainingExpressions: Int
"""The number of tokens left over from the previous period."""
leftoverTokens: Int
"""The number of characters left over from the previous period."""
leftoverCharacters: Int
"""The number of expressions left over from the previous period."""
leftoverExpressions: Int
activeUser: UserNode
nextState: UsageStateNode
boardCount: Int
}
type UserPreferencesNode implements Node {
"""The ID of the object"""
id: ID!
user: UserNode!
actionOnExpressionClick: String!
}
type BoardMembershipNodeConnection {
"""The total number of items in the connection."""
count: Int!
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [BoardMembershipNodeEdge]!
}
"""A Relay edge containing a `BoardMembershipNode` and its cursor."""
type BoardMembershipNodeEdge {
"""The item at the end of the edge"""
node: BoardMembershipNode
"""A cursor for use in pagination"""
cursor: String!
}
type BoardMembershipNode implements SearchNode & Node {
"""The date and time at which the object was created."""
created: DateTime!
"""The date and time at which the object was last updated."""
updated: DateTime!
"""The ID of the object"""
id: ID!
board: BoardNode!
user: UserNode!
role: ExpressionsBoardMembershipRoleChoices!
}
type BoardNode implements SearchNode & Node {
"""The date and time at which the object was created."""
created: DateTime!
"""The date and time at which the object was last updated."""
updated: DateTime!
"""The ID of the object"""
id: ID!
iso6391: String
iso6392: String
iso6393: String!
name: String!
description: String
isPublic: Boolean!
users(offset: Int, before: String, after: String, first: Int, last: Int, firstName: String, firstName_Icontains: String, lastName: String, lastName_Icontains: String, email: String, email_Icontains: String, username: String, username_Icontains: String, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime): UserNodeConnection!
defaultForUser: UserNode
isDefault: Boolean!
explanationsLanguage: String!
explanationsLength: String!
enabledLanguages: JSONString!
openaiThreadId: String
displayTranslations: Boolean!
displayGeneral: Boolean!
displayGrammar: Boolean!
displayWords: Boolean!
memberships(offset: Int, before: String, after: String, first: Int, last: Int, board: ID, user: ID, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime): BoardMembershipNodeConnection!
groups(offset: Int, before: String, after: String, first: Int, last: Int, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime): GroupNodeConnection!
expressions(offset: Int, before: String, after: String, first: Int, last: Int, board: ID, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime, rating: Int, rating_Gte: Int, rating_Lte: Int): ExpressionNodeConnection!
"""The thread associated with this board"""
thread: ThreadNode
}
"""
Allows use of a JSON String for input / output from the GraphQL schema.
Use of this type is *not recommended* as you lose the benefits of having a defined, static
schema (one of the key benefits of GraphQL).
"""
scalar JSONString
type GroupNodeConnection {
"""The total number of items in the connection."""
count: Int!
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [GroupNodeEdge]!
}
"""A Relay edge containing a `GroupNode` and its cursor."""
type GroupNodeEdge {
"""The item at the end of the edge"""
node: GroupNode
"""A cursor for use in pagination"""
cursor: String!
}
type GroupNode implements SearchNode & Node {
"""The date and time at which the object was created."""
created: DateTime!
"""The date and time at which the object was last updated."""
updated: DateTime!
"""The ID of the object"""
id: ID!
board: BoardNode!
expressions(offset: Int, before: String, after: String, first: Int, last: Int, board: ID, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime, rating: Int, rating_Gte: Int, rating_Lte: Int): ExpressionNodeConnection!
}
type ExpressionNodeConnection {
"""The total number of items in the connection."""
count: Int!
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [ExpressionNodeEdge]!
}
"""A Relay edge containing a `ExpressionNode` and its cursor."""
type ExpressionNodeEdge {
"""The item at the end of the edge"""
node: ExpressionNode
"""A cursor for use in pagination"""
cursor: String!
}
type ExpressionNode implements SearchNode & Node {
"""The date and time at which the object was created."""
created: DateTime!
"""The date and time at which the object was last updated."""
updated: DateTime!
"""The ID of the object"""
id: ID!
iso6391: String
iso6392: String
iso6393: String!
group: GroupNode!
board: BoardNode!
content: String!
correctedContent: String
translation: String
changes: String
category: String!
audioUrl: String
audioKey: String
voiceId: String
variant: String
generalExplanation: String
grammarExplanation: String
wordsExplanation: String
variantName: String
variantFrom: ExpressionNode
variantWord: String
isProcessed: Boolean!
isBookmarked: Boolean!
hash: String!
explanationsLanguage: String!
analysis: ExpressionAnalysisNode
rating: Int
ratingComment: String
rated: DateTime
flagIsProcessed: Boolean
flagComment: String
retriesGeneration: Int!
tokensUsedPrompt: Int!
tokensUsedCompletion: Int!
tokensUsedTotal: Int!
charactersUsed: Int!
createdBy: UserNode
Order: Int!
variants(offset: Int, before: String, after: String, first: Int, last: Int, board: ID, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime, rating: Int, rating_Gte: Int, rating_Lte: Int): ExpressionNodeConnection!
usageRecord: UsageRecordNode
"""Whether the content is in rtl direction"""
textDirection: String
}
type ExpressionAnalysisNode implements SearchNode & Node {
"""The date and time at which the object was created."""
created: DateTime!
"""The date and time at which the object was last updated."""
updated: DateTime!
"""The ID of the object"""
id: ID!
hash: String!
content: String!
payloadV1: [Word]
expressionSet(offset: Int, before: String, after: String, first: Int, last: Int, board: ID, created_Gte: DateTime, created_Gt: DateTime, created_Lte: DateTime, created_Lt: DateTime, rating: Int, rating_Gte: Int, rating_Lte: Int): ExpressionNodeConnection!
}
type Word {
word: String
lemma: [String]
pos: String
morphology: Morphology
syntax: Syntax
clitics: [Clitic]
composed: ComposedWord
prefix: Prefix
}
type Morphology {
tense: String
mood: Mood
voice: Voice
aspect: Aspect
person: Int
number: Number
gender: String
case: String
evidentiality: Evidentiality
politeness: Politeness
clusivity: Clusivity
register: Register
valency: Valency
variantForm: String
}
enum Mood {
INDICATIVE
IMPERATIVE
SUBJUNCTIVE
CONDITIONAL
OPTATIVE
INFINITIVE
PARTICIPLE
GERUND
}
enum Voice {
ACTIVE
PASSIVE
MIDDLE
REFLEXIVE
}
enum Aspect {
IMPERFECTIVE
PERFECTIVE
PROGRESSIVE
}
enum Number {
SINGULAR
PLURAL
}
enum Evidentiality {
WITNESSED
REPORTED
INFERRED
ASSUMED
}
enum Politeness {
INFORMAL
FORMAL
HONORIFIC
}
enum Clusivity {
INCLUSIVE
EXCLUSIVE
}
enum Register {
SLANG
COLLOQUIAL
STANDARD
FORMAL
TECHNICAL
}
enum Valency {
INTRANSITIVE
TRANSITIVE
DITRANSITIVE
}
type Syntax {
function: String
head: Int
}
type Clitic {
clitic: String
pos: String
morphology: Morphology
syntax: Syntax
}
type ComposedWord {
word: String
components: [Word]
}
type Prefix {
prefix: String
type: PrefixType
sense: PrefixLexicalSense
}
enum PrefixType {
SEPARABLE
INSEPARABLE
}
enum PrefixLexicalSense {
DIRECTIONAL
COMPLETION
INTENSIFICATION
REVERSAL
BEGINNING
}
type UsageRecordNode implements SearchNode & Node {
"""The date and time at which the object was created."""
created: DateTime!
"""The ID of the object"""
id: ID!
"""The user the usage record is for."""
user: UserNode
"""The expression the usage record tracks."""
expression: ExpressionNode
metadata: JSONString!
"""The number of OpenAI tokens used."""
usedTokens: Int!
"""The number of characters used in the Eleven Labs API."""
usedCharacters: Int
}
type ThreadNode implements Node {
messages(before: String, after: String, first: Int, last: Int): LanguageMessageTypeConnection
id: ID!
createdAt: DateTime
metadata: JSONString
object: String
}
"""
Implements : https://github.com/openai/openai-python/blob/main/src/openai/pagination.py
"""
type LanguageMessageTypeConnection {
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [LanguageMessageTypeEdge]!
}
"""A Relay edge containing a `LanguageMessageType` and its cursor."""
type LanguageMessageTypeEdge {
"""The item at the end of the edge"""
node: LanguageMessageType
"""A cursor for use in pagination"""
cursor: String!
}
type LanguageMessageType {
content: LanguageContentType
id: ID!
assistantId: String
attachments: JSONString
completedAt: DateTime
createdAt: DateTime
incompleteAt: DateTime
incompleteDetails: JSONString
metadata: JSONString
object: String
role: String
runId: String
status: String
threadId: ID
}
union LanguageContentType = AssistantLanguageMessageType | UserLanguageMessageType
type AssistantLanguageMessageType {
content: String
suggestions: [String]
iso6393: String
iso6392: String
iso6391: String
}
type UserLanguageMessageType {
content: String
}
"""An enumeration."""
enum ExpressionsBoardMembershipRoleChoices {
"""Owner"""
OWNER
"""Admin"""
ADMIN
"""Member"""
MEMBER
}