diff options
author | Michael Muré <batolettre@gmail.com> | 2024-08-28 11:43:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-28 09:43:42 +0000 |
commit | 57e7147021e38b847213d4dc7f0e0bf0b022850d (patch) | |
tree | 882650697950003e2325f0815353032a8596ca1d /webui/src/components/BugTitleForm/SetTitle.graphql | |
parent | e45c3c5ee6dc5650fd8c3f480d9e09e5f3b221fd (diff) | |
download | git-bug-57e7147021e38b847213d4dc7f0e0bf0b022850d.tar.gz |
graphql: properly namespace Bug to make space for other entities (#1254)
Also: use gqlgen directives to help the type auto-binding
Missing:
- namespace mutations
- adapt the webUI queries
Diffstat (limited to 'webui/src/components/BugTitleForm/SetTitle.graphql')
-rw-r--r-- | webui/src/components/BugTitleForm/SetTitle.graphql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/components/BugTitleForm/SetTitle.graphql b/webui/src/components/BugTitleForm/SetTitle.graphql index 9dc2d096..8477b1e2 100644 --- a/webui/src/components/BugTitleForm/SetTitle.graphql +++ b/webui/src/components/BugTitleForm/SetTitle.graphql @@ -1,5 +1,5 @@ -mutation setTitle($input: SetTitleInput!) { - setTitle(input: $input) { +mutation setTitle($input: BugSetTitleInput!) { + bugSetTitle(input: $input) { bug { id } |