Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
Merge pull request #80 from david-tomson/main
Browse files Browse the repository at this point in the history
change `ParentCollection` name to `Collection`
  • Loading branch information
abdfnx committed Sep 8, 2021
2 parents c751f10 + c5de605 commit 0e4ceaa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/schema.gql
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

type Password {
value: String!
hasParentID: Boolean
parentCollection: ParentCollection
hasID: Boolean
collection: Collection
}

type ParentCollection {
type Collection {
name: String!
passwords: [Password]
}

type Query {
passwords: [Password]
parentCollection(name: String): ParentCollection
collection(name: String): Collection
}

mutation {
Expand Down

0 comments on commit 0e4ceaa

Please sign in to comment.