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
Type | Version 1 | Version 2 |
---|---|---|
ResourceGroup | resources | resourceGroupMembers |
Query | resourcesAndresourceGroups | resourcesAndResourceGroups |
All input types that specified sorting | order_by | order |
Type Changes
Type | Changes |
---|---|
ViewerStateInput | The color field is now typed Color! (it was previously a nullable Color type). |