Skip to content

Commit 0465a62

Browse files
authored
Feat(user): only display for active users (#721)
1 parent 094ce37 commit 0465a62

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/graphql/queries/certifications.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ import { gql } from "@apollo/client";
22

33
export const GET_USER_CERTIFICATION = gql`
44
query getUserCertification($name: String!) {
5-
UserCertification(where: { Certification: { name: { _eq: $name } } }) {
5+
UserCertification(
6+
where: {
7+
Certification: { name: { _eq: $name } }
8+
User: { active: { _eq: true } }
9+
}
10+
) {
611
userEmail
712
certId
813
from

0 commit comments

Comments
 (0)