attio 0.0.1-experimental.20250425.1 → 0.0.1-experimental.20250507
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/package.json +1 -1
- package/schema.graphql +47 -5
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -9,6 +9,10 @@ interface IObject {
|
|
|
9
9
|
"""ID of the record."""
|
|
10
10
|
id: String!
|
|
11
11
|
): Record
|
|
12
|
+
records(
|
|
13
|
+
"""IDs of the records."""
|
|
14
|
+
ids: [String!]!
|
|
15
|
+
): [Record]!
|
|
12
16
|
}
|
|
13
17
|
|
|
14
18
|
"""A record in the workspace."""
|
|
@@ -196,6 +200,10 @@ type Object implements IObject {
|
|
|
196
200
|
"""ID of the record."""
|
|
197
201
|
id: String!
|
|
198
202
|
): Record
|
|
203
|
+
records(
|
|
204
|
+
"""IDs of the records."""
|
|
205
|
+
ids: [String!]!
|
|
206
|
+
): [Record]!
|
|
199
207
|
}
|
|
200
208
|
|
|
201
209
|
"""A record for a custom object."""
|
|
@@ -253,7 +261,15 @@ type Query {
|
|
|
253
261
|
"""Slug of the record's object."""
|
|
254
262
|
object: String!
|
|
255
263
|
): Record
|
|
264
|
+
records(
|
|
265
|
+
"""IDs of the records."""
|
|
266
|
+
ids: [String!]!
|
|
267
|
+
|
|
268
|
+
"""Slug of the record's object."""
|
|
269
|
+
object: String!
|
|
270
|
+
): [Record]!
|
|
256
271
|
currentUser: User!
|
|
272
|
+
currentWorkspace: Workspace!
|
|
257
273
|
}
|
|
258
274
|
|
|
259
275
|
"""The person object in the workspace."""
|
|
@@ -266,7 +282,11 @@ type people implements IObject {
|
|
|
266
282
|
record(
|
|
267
283
|
"""ID of the person record."""
|
|
268
284
|
id: String!
|
|
269
|
-
): Person
|
|
285
|
+
): Person
|
|
286
|
+
records(
|
|
287
|
+
"""IDs of the person records."""
|
|
288
|
+
ids: [String!]!
|
|
289
|
+
): [Person]!
|
|
270
290
|
}
|
|
271
291
|
|
|
272
292
|
"""A person record."""
|
|
@@ -437,7 +457,11 @@ type companies implements IObject {
|
|
|
437
457
|
record(
|
|
438
458
|
"""ID of the company record."""
|
|
439
459
|
id: String!
|
|
440
|
-
): Company
|
|
460
|
+
): Company
|
|
461
|
+
records(
|
|
462
|
+
"""IDs of the company records."""
|
|
463
|
+
ids: [String!]!
|
|
464
|
+
): [Company]!
|
|
441
465
|
}
|
|
442
466
|
|
|
443
467
|
"""The deal object in the workspace."""
|
|
@@ -450,7 +474,11 @@ type deals implements IObject {
|
|
|
450
474
|
record(
|
|
451
475
|
"""ID of the deal record."""
|
|
452
476
|
id: String!
|
|
453
|
-
): Deal
|
|
477
|
+
): Deal
|
|
478
|
+
records(
|
|
479
|
+
"""IDs of the deal records."""
|
|
480
|
+
ids: [String!]!
|
|
481
|
+
): [Deal]!
|
|
454
482
|
}
|
|
455
483
|
|
|
456
484
|
"""The workspace object in the workspace."""
|
|
@@ -463,7 +491,11 @@ type workspaces implements IObject {
|
|
|
463
491
|
record(
|
|
464
492
|
"""ID of the workspace record."""
|
|
465
493
|
id: String!
|
|
466
|
-
): WorkspaceRecord
|
|
494
|
+
): WorkspaceRecord
|
|
495
|
+
records(
|
|
496
|
+
"""IDs of the workspace records."""
|
|
497
|
+
ids: [String!]!
|
|
498
|
+
): [WorkspaceRecord]!
|
|
467
499
|
}
|
|
468
500
|
|
|
469
501
|
"""The user object in the workspace."""
|
|
@@ -476,5 +508,15 @@ type users implements IObject {
|
|
|
476
508
|
record(
|
|
477
509
|
"""ID of the user record."""
|
|
478
510
|
id: String!
|
|
479
|
-
): UserRecord
|
|
511
|
+
): UserRecord
|
|
512
|
+
records(
|
|
513
|
+
"""IDs of the user records."""
|
|
514
|
+
ids: [String!]!
|
|
515
|
+
): [UserRecord]!
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
type Workspace {
|
|
519
|
+
id: String!
|
|
520
|
+
name: String!
|
|
521
|
+
slug: String!
|
|
480
522
|
}
|