OBJECT

ResourceRestriction

A restriction for a specific resource.

link GraphQL Schema definition

1type ResourceRestriction {
2
3# The list of exemptions for a given resource restriction.
4exemptions: [ResourceRestrictionExemption!]
5
6# The restriction's unique identifier.
7id: ID!
8
9# The list of options that were applied at time of creation for a given resource
10# restriction.
11options: [ResourceRestrictionOption!]!
12
13# The type of restriction on this resource.
14type: ResourceRestrictionType!
15
16}