diff --git a/schema.graphql b/schema.graphql index 5431557..47c127a 100644 --- a/schema.graphql +++ b/schema.graphql @@ -10,6 +10,9 @@ enum EventEnum { """A Float or a String""" scalar GraphQLStringOrFloat +"""Hashed string values""" +scalar Hash + """ The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). """ @@ -115,8 +118,33 @@ input create_Projects_input { name: String sort: Int status: String - user_created: String - user_updated: String + user_created: create_directus_users_input + user_updated: create_directus_users_input +} + +input create_directus_users_input { + auth_data: JSON + avatar: String + description: String + email: String + email_notifications: Boolean + external_identifier: String + first_name: String + id: ID + language: String + last_access: Date + last_name: String + last_page: String + location: String + password: Hash + provider: String + role: String + status: String + tags: JSON + tfa_secret: Hash + theme: String + title: String + token: Hash } input date_filter_operators { diff --git a/src/routes/account/+page.svelte b/src/routes/account/+page.svelte index 0fefafd..c5081b7 100644 --- a/src/routes/account/+page.svelte +++ b/src/routes/account/+page.svelte @@ -25,7 +25,7 @@ const object = { email: user.email, password: pashedPassword, - role: 'b0f4301f-a315-4b95-8352-9016a8f95f2d' + role: '85594199-77a1-42ec-9fce-c4465c4fb4a5' }; const responseCreate = await fetch('https://data.andert.me/users', {