We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 094ce37 commit 0465a62Copy full SHA for 0465a62
src/graphql/queries/certifications.ts
@@ -2,7 +2,12 @@ import { gql } from "@apollo/client";
2
3
export const GET_USER_CERTIFICATION = gql`
4
query getUserCertification($name: String!) {
5
- UserCertification(where: { Certification: { name: { _eq: $name } } }) {
+ UserCertification(
6
+ where: {
7
+ Certification: { name: { _eq: $name } }
8
+ User: { active: { _eq: true } }
9
+ }
10
+ ) {
11
userEmail
12
certId
13
from
0 commit comments