File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
app/[locale]/manage/usecases/edit/[id] Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const FetchUseCaseDetails: any = graphql(`
2929` ) ;
3030
3131const AssignUsecaseDatasets : any = graphql ( `
32- mutation assignDatasets($useCaseId: Int !, $datasetIds: [UUID!]!) {
32+ mutation assignDatasets($useCaseId: String !, $datasetIds: [UUID!]!) {
3333 updateUsecaseDatasets(useCaseId: $useCaseId, datasetIds: $datasetIds) {
3434 ... on TypeUseCase {
3535 id
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ const UseCaseDetails: any = graphql(`
5151` ) ;
5252
5353const publishUseCaseMutation : any = graphql ( `
54- mutation publishUseCase($useCaseId: Int !) {
54+ mutation publishUseCase($useCaseId: String !) {
5555 publishUseCase(useCaseId: $useCaseId) {
5656 ... on TypeUseCase {
5757 id
You can’t perform that action at this time.
0 commit comments