You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type Author {
name: String
books: [Book]
_count: String
}
but they cannot query _count: String as it is an aggregate system-field. The definition of the collection should fail with a nice error explaining this. _count won't be the only system field where this is an issue, please fix all of them.
TestView_OneToManyWithCount_Errors documents how this can cause problems later in the user-flow, the test should be altered or removed when fixing this issue.
The text was updated successfully, but these errors were encountered:
AndrewSisley
changed the title
User may define 'reserved' fields on object but cant query them
User may define system fields on object but cant query them
Dec 7, 2023
For example they can define:
but they cannot query
_count: String
as it is an aggregate system-field. The definition of the collection should fail with a nice error explaining this._count
won't be the only system field where this is an issue, please fix all of them.TestView_OneToManyWithCount_Errors
documents how this can cause problems later in the user-flow, the test should be altered or removed when fixing this issue.The text was updated successfully, but these errors were encountered: