From 78f5cc4e6de8ef015850b09a4d5236b32a82a8c0 Mon Sep 17 00:00:00 2001 From: michaelfarrell76 Date: Mon, 23 Oct 2023 13:21:57 -0700 Subject: [PATCH] fixes --- src/graphql/gqls/dataPoint.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/graphql/gqls/dataPoint.ts b/src/graphql/gqls/dataPoint.ts index 4346614e..35ad3e88 100644 --- a/src/graphql/gqls/dataPoint.ts +++ b/src/graphql/gqls/dataPoint.ts @@ -102,6 +102,8 @@ export const UPDATE_OR_CREATE_DATA_POINT = gql` $title: String $description: String $ownerIds: [ID!] + $ownerEmails: [String!] + $teamNames: [String!] $teamIds: [ID!] $dataCollectionTag: String $querySuggestions: [DbIntegrationQuerySuggestionInput!] @@ -114,6 +116,8 @@ export const UPDATE_OR_CREATE_DATA_POINT = gql` name: $name path: $path title: $title + teamNames: $teamNames + ownerEmails: $ownerEmails dataCollectionTag: $dataCollectionTag description: $description ownerIds: $ownerIds