step 3 : login absensi fix, return graphql staff

This commit is contained in:
sindhu
2024-01-18 16:42:23 +07:00
parent 2bd8da63fc
commit 87edd82ff7
10 changed files with 200 additions and 128 deletions

View File

@@ -6,8 +6,9 @@ type Staff {
email: String!
phone_number: String
is_active: String
is_login: Boolean
is_login: String
token: String
expired: String
id_google_sign_in: String!
display_name_google_sign_in: String
created_at: String
@@ -29,5 +30,5 @@ extend type Query {
# mutation untuk perubahan data
extend type Mutation {
loginAttendance(email:String!, id_google_sign_in:String!, publickey:String!) : Staff!
loginAttendance(email:String!, id_google_sign_in:String!) : Staff!
}