From 4356e7d02cd5a4b47b8af9ab8c60d1f0f1e8f322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Salazar?= <73718835+joshrs23@users.noreply.github.com> Date: Mon, 1 Dec 2025 09:48:28 -0500 Subject: [PATCH] solving problems for missing data in the from --- dataconnect/connector/event/queries.gql | 2 ++ dataconnect/connector/user/queries.gql | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dataconnect/connector/event/queries.gql b/dataconnect/connector/event/queries.gql index c8c1c98b..3fe4233e 100644 --- a/dataconnect/connector/event/queries.gql +++ b/dataconnect/connector/event/queries.gql @@ -35,6 +35,7 @@ query listEvents @auth(level: USER) { notes requested assignedStaff + createdBy } } @@ -143,5 +144,6 @@ query filterEvents( notes requested assignedStaff + createdBy } } diff --git a/dataconnect/connector/user/queries.gql b/dataconnect/connector/user/queries.gql index 417860bf..d761fdc6 100644 --- a/dataconnect/connector/user/queries.gql +++ b/dataconnect/connector/user/queries.gql @@ -23,12 +23,14 @@ query getUserById( } query filterUsers( + $id: String, $email: String, $role: UserBaseRole, $userRole: String ) @auth(level: USER) { users( where: { + id: { eq: $id } email: { eq: $email } role: { eq: $role } userRole: { eq: $userRole }