Is there a list of unallowed parameter names?
I had
schema: {
model: {
id: "id",
hasChildren: "hasChildren",
children: "items",
fields: {
level: {
type: "number",
editable: true,
nullable: false
}
}
}
}
Which kept failing for some unknown reason. Eventually I tried changing a working dataSource's extra param to "level" and it started failing. Then I realized that "level" must already be used in dataSource or something.
I had
schema: {
model: {
id: "id",
hasChildren: "hasChildren",
children: "items",
fields: {
level: {
type: "number",
editable: true,
nullable: false
}
}
}
}
Which kept failing for some unknown reason. Eventually I tried changing a working dataSource's extra param to "level" and it started failing. Then I realized that "level" must already be used in dataSource or something.