SeedCompany / cord-api-v3

Bible translation project management API
MIT License
18 stars 4 forks source link

Expose Actor & SystemAgent to GQL #3235

Closed CarsonF closed 4 weeks ago

github-actions[bot] commented 1 month ago

🗞 GraphQL Summary

View schema changes ```diff @@ -1,4 +1,8 @@ +interface Actor { + id: ID! +} + input AssignOrganizationToUser { orgId: ID! primary: Boolean userId: ID! @@ -6493,8 +6497,13 @@ """The total number of items across all pages""" total: Int! } +type SystemAgent implements Actor { + id: ID! + name: String! +} + interface TemporalMedia implements Media { """ A description of this media for accessibility, especially for screen readers. It should convey this media's content and function. @@ -7371,9 +7380,9 @@ """ variantGroup: ID } -type User implements Pinnable & Resource { +type User implements Actor & Pinnable & Resource { about: SecuredStringNullable! avatarLetters: String """Whether the requesting user can delete this resource""" ```

⚠️ Dangerous Changes