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
If I execute this query for user 21 and project 35, I correctly receive in the result an empty tasks array as expected (see screenshot)
{
ProjectProject(domain: [["id", "in", [35]]]) {
id
name
tasks(domain: [["user_ids", "in", [21]], ["stage_id.id", "!=", 32 ]]) {
id
child_ids(domain: [["stage_id.id", "!=", 32 ]]) {
id
}
}
}
}
.
BUT as soon as I add another projectId in the query (39 or any other projectId) then the tasks array for project 35 contains a null item, which is breaking the dapp.
See screenshot example:
Expected Behavoir
Query result should not contains array with null items.
The text was updated successfully, but these errors were encountered:
Current Behavior
If I execute this query for user 21 and project 35, I correctly receive in the result an empty tasks array as expected (see screenshot)
.
BUT as soon as I add another projectId in the query (39 or any other projectId) then the tasks array for project 35 contains a
null
item, which is breaking the dapp.See screenshot example:
Expected Behavoir
Query result should not contains array with null items.
The text was updated successfully, but these errors were encountered: