attio 0.0.1-experimental.20250425.1 → 0.0.1-experimental.20250506
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 +7 -0
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -254,6 +254,7 @@ type Query {
|
|
|
254
254
|
object: String!
|
|
255
255
|
): Record
|
|
256
256
|
currentUser: User!
|
|
257
|
+
currentWorkspace: Workspace!
|
|
257
258
|
}
|
|
258
259
|
|
|
259
260
|
"""The person object in the workspace."""
|
|
@@ -477,4 +478,10 @@ type users implements IObject {
|
|
|
477
478
|
"""ID of the user record."""
|
|
478
479
|
id: String!
|
|
479
480
|
): UserRecord!
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
type Workspace {
|
|
484
|
+
id: String!
|
|
485
|
+
name: String!
|
|
486
|
+
slug: String!
|
|
480
487
|
}
|