Skip to main content

Version 2 Changes

Filtering

Operations and fields are now separated, rather than combined into one field.

Version 1:

query {
recordingSession(where: { recordingSessionId: 1 }) {
...
}
}

Version 2:

query {
recordingSession(where: { recordingSessionId: { eq: 1 } }) {
...
}
}

Renamed Fields

TypeVersion 1Version 2
ResourceGroupresourcesresourceGroupMembers
QueryresourcesAndresourceGroupsresourcesAndResourceGroups
All input types that specified sortingorder_byorder

Type Changes

TypeChanges
ViewerStateInputThe color field is now typed Color! (it was previously a nullable Color type).