We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b642a9 commit 70bd8e9Copy full SHA for 70bd8e9
api/schema/usecase_dashboard_schema.py
@@ -46,6 +46,7 @@ class UseCaseDashboardMutationResponse:
46
class Mutation:
47
"""UseCaseDashboard mutations."""
48
49
+ @strawberry.mutation
50
@BaseMutation.mutation(
51
permission_classes=[IsAuthenticated],
52
trace_name="add_usecase_dashboards",
@@ -88,6 +89,7 @@ def add_usecase_dashboards(
88
89
except Exception as e:
90
raise Exception(f"Failed to add dashboards: {str(e)}")
91
92
93
94
95
trace_name="delete_usecase_dashboard",
0 commit comments