@bigfootai/bigfoot-types 2.11.6 → 2.11.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/model.js +101 -17
- package/model.ts +103 -19
- package/package.json +1 -1
package/model.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.GraphQLTypes = exports.Table = exports.FieldVariation = exports.FieldType = exports.Template = void 0;
|
|
3
|
+
exports.NoteQL = exports.BusinessObject = exports.BusinessObjectQL = exports.BlockProcessingResponse = exports.BlockProcessingRequest = exports.Block = exports.BlockFields = exports.Article = exports.ArticleQL = exports.Person = exports.Domain = exports.Tenant = exports.TenantQL = exports.Tag = exports.Provider = exports.Sync = exports.Primitive = exports.PrimitiveFields = exports.ChangesQL = exports.ReferenceBlockQL = exports.ConnectedProviderQL = exports.CredentialQL = exports.ProviderRequestQL = exports.ProviderInfoQL = exports.EntityEntryQL = exports.MachineLearningEntryFields = exports.RelationEntryQL = exports.ArgumentEntryQL = exports.EntityReferenceQL = exports.DocumentSentimentQL = exports.ReactionQL = exports.ReactionSkinToneQL = exports.SharingTagQL = exports.EditorQL = exports.HighlightQL = exports.RelationType = exports.EntityType = exports.ProcessingStage = exports.MutationType = exports.MarkType = exports.DocumentType = exports.RecurrenceRFC = exports.InviteStatus = exports.SharingApproach = exports.StepStatus = exports.TaskStatus = exports.SharingLevel = exports.ClientType = exports.TagType = exports.BlockType = void 0;
|
|
4
|
+
exports.GraphQLTypes = exports.Table = exports.FieldVariation = exports.FieldType = exports.Template = exports.Website = exports.Thread = exports.Todo = exports.Event = exports.Calendar = exports.ResponseStatus = exports.EventStatus = exports.Conference = exports.Task = exports.TaskQL = exports.Note = void 0;
|
|
5
5
|
const uuid_1 = require("uuid");
|
|
6
6
|
/*
|
|
7
7
|
These are the core primitives of our model. These represent the entities that show
|
|
@@ -177,18 +177,23 @@ var RelationType;
|
|
|
177
177
|
RelationType["SpouseOf"] = "spouseOf";
|
|
178
178
|
RelationType["SubsidiaryOf"] = "subsidiaryOf";
|
|
179
179
|
})(RelationType || (exports.RelationType = RelationType = {}));
|
|
180
|
+
exports.HighlightQL = `
|
|
181
|
+
type Highlight {
|
|
182
|
+
indexStart: Int!
|
|
183
|
+
indexEnd: Int!
|
|
184
|
+
}`;
|
|
180
185
|
exports.EditorQL = `
|
|
181
186
|
type Editor {
|
|
182
187
|
clientType: String!
|
|
183
188
|
clientId: String!
|
|
184
|
-
|
|
189
|
+
tenantId: String
|
|
185
190
|
}`;
|
|
186
191
|
exports.SharingTagQL = `
|
|
187
192
|
type SharingTag {
|
|
188
193
|
tagId: String!
|
|
189
194
|
isShared: Boolean!
|
|
190
|
-
|
|
191
|
-
|
|
195
|
+
sharingApproach: String!
|
|
196
|
+
sharingLevel: String!
|
|
192
197
|
}`;
|
|
193
198
|
exports.ReactionSkinToneQL = `
|
|
194
199
|
type ReactionSkinTone {
|
|
@@ -200,6 +205,37 @@ type Reaction {
|
|
|
200
205
|
skinTones: [ReactionSkinTone]!
|
|
201
206
|
unified: String!
|
|
202
207
|
}`;
|
|
208
|
+
exports.DocumentSentimentQL = `
|
|
209
|
+
type DocumentSentiment {
|
|
210
|
+
name: String!
|
|
211
|
+
score: Int!
|
|
212
|
+
}`;
|
|
213
|
+
exports.EntityReferenceQL = `
|
|
214
|
+
type EntityReference {
|
|
215
|
+
name: String!
|
|
216
|
+
type: String!
|
|
217
|
+
}`;
|
|
218
|
+
exports.ArgumentEntryQL = `
|
|
219
|
+
type ArgumentEntry {
|
|
220
|
+
text: String!
|
|
221
|
+
highlight: Highlight!
|
|
222
|
+
entities: [EntityReference]!
|
|
223
|
+
}`;
|
|
224
|
+
exports.RelationEntryQL = `
|
|
225
|
+
type RelationEntry {
|
|
226
|
+
type: String!
|
|
227
|
+
score: Int!
|
|
228
|
+
highlight: Highlight!
|
|
229
|
+
arguments: [ArgumentEntry]!
|
|
230
|
+
}`;
|
|
231
|
+
exports.MachineLearningEntryFields = `
|
|
232
|
+
highlights: [Highlight]`;
|
|
233
|
+
exports.EntityEntryQL = `
|
|
234
|
+
type EntityEntry {${exports.MachineLearningEntryFields}
|
|
235
|
+
name: String!
|
|
236
|
+
type: String!
|
|
237
|
+
score: Int!
|
|
238
|
+
}`;
|
|
203
239
|
exports.ProviderInfoQL = `
|
|
204
240
|
type ProviderInfo {
|
|
205
241
|
provider: String!
|
|
@@ -228,6 +264,12 @@ type ConnectedProvider {
|
|
|
228
264
|
dateCreated: Float
|
|
229
265
|
dateUpdated: Float
|
|
230
266
|
}`;
|
|
267
|
+
exports.ReferenceBlockQL = `
|
|
268
|
+
type ReferenceBlock {
|
|
269
|
+
id: String!
|
|
270
|
+
version: Int!
|
|
271
|
+
type: String!
|
|
272
|
+
}`;
|
|
231
273
|
exports.ChangesQL = `
|
|
232
274
|
type Changes {
|
|
233
275
|
steps: [String]!
|
|
@@ -276,16 +318,14 @@ class Tag extends Primitive {
|
|
|
276
318
|
}
|
|
277
319
|
exports.Tag = Tag;
|
|
278
320
|
exports.TenantQL = `
|
|
279
|
-
type Tenant {
|
|
321
|
+
type Tenant {${exports.PrimitiveFields}
|
|
280
322
|
domainMemberships: [String]!
|
|
281
323
|
email: String!
|
|
282
|
-
emailVerified: Boolean!
|
|
283
324
|
domainIdEmail: String!
|
|
284
325
|
tagId: String!
|
|
285
326
|
picture: String
|
|
286
327
|
familyName: String
|
|
287
328
|
givenName: String
|
|
288
|
-
connectedProviders: [ConnectedProvider]
|
|
289
329
|
}`;
|
|
290
330
|
class Tenant extends Primitive {
|
|
291
331
|
constructor(domainMemberships, email, emailVerified, domainIdEmail, tagId) {
|
|
@@ -314,6 +354,20 @@ class Person extends Tag {
|
|
|
314
354
|
}
|
|
315
355
|
}
|
|
316
356
|
exports.Person = Person;
|
|
357
|
+
exports.ArticleQL = `
|
|
358
|
+
type Article {${exports.PrimitiveFields}
|
|
359
|
+
referenceBlock: ReferenceBlock!
|
|
360
|
+
sentiment: DocumentSentiment
|
|
361
|
+
dates: [EntityEntry]
|
|
362
|
+
locations: [EntityEntry]
|
|
363
|
+
organizations: [EntityEntry]
|
|
364
|
+
names: [EntityEntry]
|
|
365
|
+
sentiments: [EntityEntry]
|
|
366
|
+
topics: [EntityEntry]
|
|
367
|
+
mentions: [EntityEntry]
|
|
368
|
+
relations: [RelationEntry]
|
|
369
|
+
linkUrls: [String]
|
|
370
|
+
}`;
|
|
317
371
|
class Article extends Primitive {
|
|
318
372
|
constructor(referenceBlock) {
|
|
319
373
|
super();
|
|
@@ -321,17 +375,14 @@ class Article extends Primitive {
|
|
|
321
375
|
}
|
|
322
376
|
}
|
|
323
377
|
exports.Article = Article;
|
|
324
|
-
exports.BlockFields =
|
|
378
|
+
exports.BlockFields = `${exports.PrimitiveFields}
|
|
325
379
|
editors: [Editor]!
|
|
326
380
|
sharingTags: [SharingTag]!
|
|
327
381
|
version: Float!
|
|
328
382
|
blockType: String!
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
changes: Changes
|
|
333
|
-
_sharedTags: [String]
|
|
334
|
-
reactions: [Reaction]`;
|
|
383
|
+
archived: Boolean!
|
|
384
|
+
document: String
|
|
385
|
+
reactions: [Reaction]`;
|
|
335
386
|
class Block extends Primitive {
|
|
336
387
|
constructor(tenantIdCreated, editors, sharingTags, version, blockType) {
|
|
337
388
|
super();
|
|
@@ -358,6 +409,19 @@ class BlockProcessingResponse {
|
|
|
358
409
|
}
|
|
359
410
|
}
|
|
360
411
|
exports.BlockProcessingResponse = BlockProcessingResponse;
|
|
412
|
+
exports.BusinessObjectQL = `
|
|
413
|
+
type BusinessObject {${exports.BlockFields}
|
|
414
|
+
provider: String!
|
|
415
|
+
application: String!
|
|
416
|
+
uri: String!
|
|
417
|
+
processingStage: String!
|
|
418
|
+
processingAttempts: Int!
|
|
419
|
+
dateProcessed: Float!
|
|
420
|
+
externalId: String!
|
|
421
|
+
processingReason: String
|
|
422
|
+
iconUrl: String
|
|
423
|
+
parentId: String
|
|
424
|
+
}`;
|
|
361
425
|
class BusinessObject extends Block {
|
|
362
426
|
constructor(tenantIdCreated, editors, sharingTags, version, blockType, provider, application, uri, externalId) {
|
|
363
427
|
super(tenantIdCreated, editors, sharingTags, version, blockType);
|
|
@@ -373,7 +437,7 @@ class BusinessObject extends Block {
|
|
|
373
437
|
}
|
|
374
438
|
exports.BusinessObject = BusinessObject;
|
|
375
439
|
exports.NoteQL = `
|
|
376
|
-
type Note {
|
|
440
|
+
type Note {${exports.BlockFields}
|
|
377
441
|
}`;
|
|
378
442
|
class Note extends Block {
|
|
379
443
|
constructor(tenantIdCreated, editors, sharingTags, version) {
|
|
@@ -382,6 +446,17 @@ class Note extends Block {
|
|
|
382
446
|
}
|
|
383
447
|
}
|
|
384
448
|
exports.Note = Note;
|
|
449
|
+
exports.TaskQL = `
|
|
450
|
+
type Task {${exports.BlockFields}
|
|
451
|
+
status: String!
|
|
452
|
+
dueDate: Int!
|
|
453
|
+
originNoteId: String!
|
|
454
|
+
snoozed: Boolean!
|
|
455
|
+
dateRemindMe: Int
|
|
456
|
+
recurrence: [String]
|
|
457
|
+
parentId: String
|
|
458
|
+
groupId: String
|
|
459
|
+
}`;
|
|
385
460
|
class Task extends Block {
|
|
386
461
|
constructor(tenantIdCreated, editors, sharingTags, version, originNoteId, dateDue) {
|
|
387
462
|
super(tenantIdCreated, editors, sharingTags, version, BlockType.Task);
|
|
@@ -497,15 +572,24 @@ exports.Table = Table;
|
|
|
497
572
|
//// FOR RECORDS END
|
|
498
573
|
// METADATA OBJECTS END
|
|
499
574
|
exports.GraphQLTypes = `
|
|
575
|
+
${exports.HighlightQL}
|
|
500
576
|
${exports.EditorQL}
|
|
501
577
|
${exports.SharingTagQL}
|
|
502
578
|
${exports.ReactionSkinToneQL}
|
|
503
579
|
${exports.ReactionQL}
|
|
580
|
+
${exports.DocumentSentimentQL}
|
|
581
|
+
${exports.EntityReferenceQL}
|
|
582
|
+
${exports.ArgumentEntryQL}
|
|
583
|
+
${exports.RelationEntryQL}
|
|
584
|
+
${exports.EntityEntryQL}
|
|
504
585
|
${exports.ProviderInfoQL}
|
|
505
586
|
${exports.ProviderRequestQL}
|
|
506
587
|
${exports.CredentialQL}
|
|
507
588
|
${exports.ChangesQL}
|
|
508
589
|
${exports.ConnectedProviderQL}
|
|
590
|
+
${exports.ReferenceBlockQL}
|
|
591
|
+
${exports.ArticleQL}
|
|
509
592
|
${exports.TenantQL}
|
|
593
|
+
${exports.BusinessObjectQL}
|
|
510
594
|
${exports.NoteQL}
|
|
511
|
-
`;
|
|
595
|
+
${exports.TaskQL}`;
|
package/model.ts
CHANGED
|
@@ -184,6 +184,11 @@ export interface Mark {
|
|
|
184
184
|
attrs?: Attrs;
|
|
185
185
|
}
|
|
186
186
|
|
|
187
|
+
export const HighlightQL = `
|
|
188
|
+
type Highlight {
|
|
189
|
+
indexStart: Int!
|
|
190
|
+
indexEnd: Int!
|
|
191
|
+
}`;
|
|
187
192
|
export interface Highlight {
|
|
188
193
|
indexStart: number;
|
|
189
194
|
indexEnd: number;
|
|
@@ -201,7 +206,7 @@ export const EditorQL = `
|
|
|
201
206
|
type Editor {
|
|
202
207
|
clientType: String!
|
|
203
208
|
clientId: String!
|
|
204
|
-
|
|
209
|
+
tenantId: String
|
|
205
210
|
}`;
|
|
206
211
|
export interface Editor {
|
|
207
212
|
clientType: ClientType;
|
|
@@ -213,8 +218,8 @@ export const SharingTagQL = `
|
|
|
213
218
|
type SharingTag {
|
|
214
219
|
tagId: String!
|
|
215
220
|
isShared: Boolean!
|
|
216
|
-
|
|
217
|
-
|
|
221
|
+
sharingApproach: String!
|
|
222
|
+
sharingLevel: String!
|
|
218
223
|
}`;
|
|
219
224
|
export interface SharingTag {
|
|
220
225
|
tagId: string;
|
|
@@ -261,22 +266,45 @@ export interface Step {
|
|
|
261
266
|
status: StepStatus;
|
|
262
267
|
}
|
|
263
268
|
|
|
269
|
+
export const DocumentSentimentQL = `
|
|
270
|
+
type DocumentSentiment {
|
|
271
|
+
name: String!
|
|
272
|
+
score: Int!
|
|
273
|
+
}`;
|
|
264
274
|
export interface DocumentSentiment {
|
|
265
275
|
name: string;
|
|
266
276
|
score: number;
|
|
267
277
|
}
|
|
268
278
|
|
|
279
|
+
export const EntityReferenceQL = `
|
|
280
|
+
type EntityReference {
|
|
281
|
+
name: String!
|
|
282
|
+
type: String!
|
|
283
|
+
}`;
|
|
269
284
|
export interface EntityReference {
|
|
270
285
|
name: string;
|
|
271
286
|
type: EntityType;
|
|
272
287
|
}
|
|
273
288
|
|
|
289
|
+
export const ArgumentEntryQL = `
|
|
290
|
+
type ArgumentEntry {
|
|
291
|
+
text: String!
|
|
292
|
+
highlight: Highlight!
|
|
293
|
+
entities: [EntityReference]!
|
|
294
|
+
}`;
|
|
274
295
|
export interface ArgumentEntry {
|
|
275
296
|
text: string;
|
|
276
297
|
highlight: Highlight;
|
|
277
298
|
entities: EntityReference[];
|
|
278
299
|
}
|
|
279
300
|
|
|
301
|
+
export const RelationEntryQL = `
|
|
302
|
+
type RelationEntry {
|
|
303
|
+
type: String!
|
|
304
|
+
score: Int!
|
|
305
|
+
highlight: Highlight!
|
|
306
|
+
arguments: [ArgumentEntry]!
|
|
307
|
+
}`;
|
|
280
308
|
export interface RelationEntry {
|
|
281
309
|
type: RelationType;
|
|
282
310
|
score: number;
|
|
@@ -284,6 +312,18 @@ export interface RelationEntry {
|
|
|
284
312
|
arguments: ArgumentEntry[];
|
|
285
313
|
}
|
|
286
314
|
|
|
315
|
+
export const MachineLearningEntryFields = `
|
|
316
|
+
highlights: [Highlight]`;
|
|
317
|
+
export interface MachineLearningEntry {
|
|
318
|
+
highlights?: Highlight[];
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
export const EntityEntryQL = `
|
|
322
|
+
type EntityEntry {${MachineLearningEntryFields}
|
|
323
|
+
name: String!
|
|
324
|
+
type: String!
|
|
325
|
+
score: Int!
|
|
326
|
+
}`;
|
|
287
327
|
export interface EntityEntry extends MachineLearningEntry {
|
|
288
328
|
name: string;
|
|
289
329
|
type: EntityType;
|
|
@@ -294,10 +334,6 @@ export interface DateEntityEntry extends EntityEntry {
|
|
|
294
334
|
date: number;
|
|
295
335
|
}
|
|
296
336
|
|
|
297
|
-
export interface MachineLearningEntry {
|
|
298
|
-
highlights?: Highlight[];
|
|
299
|
-
}
|
|
300
|
-
|
|
301
337
|
export const ProviderInfoQL = `
|
|
302
338
|
type ProviderInfo {
|
|
303
339
|
provider: String!
|
|
@@ -373,6 +409,12 @@ export interface ConnectedProvider {
|
|
|
373
409
|
dateUpdated: number;
|
|
374
410
|
}
|
|
375
411
|
|
|
412
|
+
export const ReferenceBlockQL = `
|
|
413
|
+
type ReferenceBlock {
|
|
414
|
+
id: String!
|
|
415
|
+
version: Int!
|
|
416
|
+
type: String!
|
|
417
|
+
}`;
|
|
376
418
|
export interface ReferenceBlock {
|
|
377
419
|
id: string;
|
|
378
420
|
version: number;
|
|
@@ -465,16 +507,14 @@ export class Tag extends Primitive {
|
|
|
465
507
|
}
|
|
466
508
|
|
|
467
509
|
export const TenantQL = `
|
|
468
|
-
type Tenant {
|
|
510
|
+
type Tenant {${PrimitiveFields}
|
|
469
511
|
domainMemberships: [String]!
|
|
470
512
|
email: String!
|
|
471
|
-
emailVerified: Boolean!
|
|
472
513
|
domainIdEmail: String!
|
|
473
514
|
tagId: String!
|
|
474
515
|
picture: String
|
|
475
516
|
familyName: String
|
|
476
517
|
givenName: String
|
|
477
|
-
connectedProviders: [ConnectedProvider]
|
|
478
518
|
}`;
|
|
479
519
|
export class Tenant extends Primitive {
|
|
480
520
|
domainMemberships: string[]; // The list of all domains this tenant belongs
|
|
@@ -534,6 +574,20 @@ export class Person extends Tag {
|
|
|
534
574
|
}
|
|
535
575
|
}
|
|
536
576
|
|
|
577
|
+
export const ArticleQL = `
|
|
578
|
+
type Article {${PrimitiveFields}
|
|
579
|
+
referenceBlock: ReferenceBlock!
|
|
580
|
+
sentiment: DocumentSentiment
|
|
581
|
+
dates: [EntityEntry]
|
|
582
|
+
locations: [EntityEntry]
|
|
583
|
+
organizations: [EntityEntry]
|
|
584
|
+
names: [EntityEntry]
|
|
585
|
+
sentiments: [EntityEntry]
|
|
586
|
+
topics: [EntityEntry]
|
|
587
|
+
mentions: [EntityEntry]
|
|
588
|
+
relations: [RelationEntry]
|
|
589
|
+
linkUrls: [String]
|
|
590
|
+
}`;
|
|
537
591
|
export class Article extends Primitive {
|
|
538
592
|
referenceBlock: ReferenceBlock;
|
|
539
593
|
changes?: Changes;
|
|
@@ -558,17 +612,14 @@ export class Article extends Primitive {
|
|
|
558
612
|
}
|
|
559
613
|
}
|
|
560
614
|
|
|
561
|
-
export const BlockFields =
|
|
615
|
+
export const BlockFields = `${PrimitiveFields}
|
|
562
616
|
editors: [Editor]!
|
|
563
617
|
sharingTags: [SharingTag]!
|
|
564
618
|
version: Float!
|
|
565
619
|
blockType: String!
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
changes: Changes
|
|
570
|
-
_sharedTags: [String]
|
|
571
|
-
reactions: [Reaction]`;
|
|
620
|
+
archived: Boolean!
|
|
621
|
+
document: String
|
|
622
|
+
reactions: [Reaction]`;
|
|
572
623
|
export class Block extends Primitive {
|
|
573
624
|
editors: Editor[];
|
|
574
625
|
sharingTags: SharingTag[];
|
|
@@ -620,6 +671,19 @@ export class BlockProcessingResponse {
|
|
|
620
671
|
}
|
|
621
672
|
}
|
|
622
673
|
|
|
674
|
+
export const BusinessObjectQL = `
|
|
675
|
+
type BusinessObject {${BlockFields}
|
|
676
|
+
provider: String!
|
|
677
|
+
application: String!
|
|
678
|
+
uri: String!
|
|
679
|
+
processingStage: String!
|
|
680
|
+
processingAttempts: Int!
|
|
681
|
+
dateProcessed: Float!
|
|
682
|
+
externalId: String!
|
|
683
|
+
processingReason: String
|
|
684
|
+
iconUrl: String
|
|
685
|
+
parentId: String
|
|
686
|
+
}`;
|
|
623
687
|
export class BusinessObject extends Block {
|
|
624
688
|
provider: string; // A unique string representing the provider e.g. "salesforce", "atlassian", etc
|
|
625
689
|
application: string; // A unique string representing the provider application e.g. "service", "jira", etc
|
|
@@ -660,7 +724,7 @@ export class BusinessObject extends Block {
|
|
|
660
724
|
}
|
|
661
725
|
|
|
662
726
|
export const NoteQL = `
|
|
663
|
-
type Note {
|
|
727
|
+
type Note {${BlockFields}
|
|
664
728
|
}`;
|
|
665
729
|
export class Note extends Block {
|
|
666
730
|
constructor(
|
|
@@ -675,6 +739,17 @@ export class Note extends Block {
|
|
|
675
739
|
}
|
|
676
740
|
}
|
|
677
741
|
|
|
742
|
+
export const TaskQL = `
|
|
743
|
+
type Task {${BlockFields}
|
|
744
|
+
status: String!
|
|
745
|
+
dueDate: Int!
|
|
746
|
+
originNoteId: String!
|
|
747
|
+
snoozed: Boolean!
|
|
748
|
+
dateRemindMe: Int
|
|
749
|
+
recurrence: [String]
|
|
750
|
+
parentId: String
|
|
751
|
+
groupId: String
|
|
752
|
+
}`;
|
|
678
753
|
export class Task extends Block {
|
|
679
754
|
status: TaskStatus;
|
|
680
755
|
dateDue: number;
|
|
@@ -1123,15 +1198,24 @@ export class Table extends BusinessObject {
|
|
|
1123
1198
|
// METADATA OBJECTS END
|
|
1124
1199
|
|
|
1125
1200
|
export const GraphQLTypes = `
|
|
1201
|
+
${HighlightQL}
|
|
1126
1202
|
${EditorQL}
|
|
1127
1203
|
${SharingTagQL}
|
|
1128
1204
|
${ReactionSkinToneQL}
|
|
1129
1205
|
${ReactionQL}
|
|
1206
|
+
${DocumentSentimentQL}
|
|
1207
|
+
${EntityReferenceQL}
|
|
1208
|
+
${ArgumentEntryQL}
|
|
1209
|
+
${RelationEntryQL}
|
|
1210
|
+
${EntityEntryQL}
|
|
1130
1211
|
${ProviderInfoQL}
|
|
1131
1212
|
${ProviderRequestQL}
|
|
1132
1213
|
${CredentialQL}
|
|
1133
1214
|
${ChangesQL}
|
|
1134
1215
|
${ConnectedProviderQL}
|
|
1216
|
+
${ReferenceBlockQL}
|
|
1217
|
+
${ArticleQL}
|
|
1135
1218
|
${TenantQL}
|
|
1219
|
+
${BusinessObjectQL}
|
|
1136
1220
|
${NoteQL}
|
|
1137
|
-
`;
|
|
1221
|
+
${TaskQL}`;
|