1
0

Accounts system, no RBAC yet

This commit is contained in:
Ahmed Al-Taiar
2023-10-31 18:41:57 -04:00
parent 1eaf76fce2
commit fcdacd844f
23 changed files with 1112 additions and 60 deletions

View File

@@ -9,8 +9,8 @@ export const schema = gql`
}
type Query {
parts: [Part!]! @requireAuth
part(id: Int!): Part @requireAuth
parts: [Part!]! @skipAuth
part(id: Int!): Part @skipAuth
}
input CreatePartInput {