Skip to content

Commit 2bf8570

Browse files
committed
fix list ids variable type
1 parent 1efff9c commit 2bf8570

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ayon_api/graphql_queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ def activities_graphql_query(fields, order):
670670
def entity_lists_graphql_query(fields):
671671
query = GraphQlQuery("EntityLists")
672672
project_name_var = query.add_variable("projectName", "String!")
673-
entity_list_ids = query.add_variable("listIds", "String!")
673+
entity_list_ids = query.add_variable("listIds", "[String!]")
674674

675675
project_field = query.add_field("project")
676676
project_field.set_filter("name", project_name_var)

0 commit comments

Comments
 (0)