-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run prettier on graphql files (#403)
- Loading branch information
1 parent
fea978a
commit bad1feb
Showing
24 changed files
with
199 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
#import "../fragments/URLFragment.gql" | ||
fragment StudioFragment on Studio { | ||
id | ||
name | ||
child_studios { | ||
id | ||
name | ||
child_studios { | ||
id | ||
name | ||
} | ||
parent { | ||
id | ||
name | ||
} | ||
urls { | ||
...URLFragment | ||
} | ||
images { | ||
id | ||
url | ||
height | ||
width | ||
} | ||
deleted | ||
is_favorite | ||
} | ||
parent { | ||
id | ||
name | ||
} | ||
urls { | ||
...URLFragment | ||
} | ||
images { | ||
id | ||
url | ||
height | ||
width | ||
} | ||
deleted | ||
is_favorite | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
mutation ActivateNewUser($input: ActivateNewUserInput!) { | ||
activateNewUser(input: $input) { | ||
id | ||
} | ||
activateNewUser(input: $input) { | ||
id | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
mutation AddScene($sceneData: SceneCreateInput!) { | ||
sceneCreate(input: $sceneData) { | ||
id | ||
release_date | ||
title, | ||
details, | ||
urls { | ||
url, | ||
site { | ||
id | ||
name | ||
} | ||
} | ||
studio { | ||
id | ||
release_date | ||
title | ||
details | ||
urls { | ||
url | ||
site { | ||
id | ||
name | ||
} | ||
performers { | ||
performer { | ||
name | ||
id | ||
gender | ||
aliases | ||
} | ||
} | ||
fingerprints { | ||
hash | ||
algorithm | ||
duration | ||
} | ||
tags { | ||
id | ||
name | ||
description | ||
} | ||
studio { | ||
id | ||
name | ||
} | ||
performers { | ||
performer { | ||
name | ||
id | ||
gender | ||
aliases | ||
} | ||
} | ||
fingerprints { | ||
hash | ||
algorithm | ||
duration | ||
} | ||
tags { | ||
id | ||
name | ||
description | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
mutation AddStudio($studioData: StudioCreateInput!) { | ||
studioCreate(input: $studioData) { | ||
id | ||
name | ||
urls { | ||
url | ||
site { | ||
id | ||
name | ||
} | ||
id | ||
name | ||
urls { | ||
url | ||
site { | ||
id | ||
name | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
mutation CancelEdit($input: CancelEditInput!) { | ||
cancelEdit(input: $input) { | ||
cancelEdit(input: $input) { | ||
id | ||
target_type | ||
operation | ||
status | ||
applied | ||
created | ||
user { | ||
id | ||
target_type | ||
operation | ||
status | ||
applied | ||
created | ||
user { | ||
name | ||
} | ||
target { | ||
... on Tag { | ||
id | ||
name | ||
description | ||
deleted | ||
} | ||
target { | ||
... on Tag { | ||
id | ||
name | ||
description | ||
deleted | ||
} | ||
} | ||
details { | ||
... on TagEdit { | ||
name | ||
description | ||
added_aliases | ||
removed_aliases | ||
} | ||
} | ||
details { | ||
... on TagEdit { | ||
name | ||
description | ||
added_aliases | ||
removed_aliases | ||
} | ||
merge_sources { | ||
... on Tag { | ||
id | ||
name | ||
description | ||
} | ||
} | ||
merge_sources { | ||
... on Tag { | ||
id | ||
name | ||
description | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
mutation ChangePassword($userData: UserChangePasswordInput!) { | ||
changePassword(input: $userData) } | ||
changePassword(input: $userData) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mutation DeleteScene($input: SceneDestroyInput!) { | ||
sceneDestroy(input: $input) | ||
sceneDestroy(input: $input) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mutation DeleteStudio($input: StudioDestroyInput!) { | ||
studioDestroy(input: $input) | ||
studioDestroy(input: $input) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mutation DeleteUser($input: UserDestroyInput!) { | ||
userDestroy(input: $input) | ||
userDestroy(input: $input) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mutation GenerateInviteCode { | ||
generateInviteCode | ||
generateInviteCode | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mutation GrantInvite($input: GrantInviteInput!) { | ||
grantInvite(input: $input) | ||
grantInvite(input: $input) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mutation NewUser($input: NewUserInput!) { | ||
newUser(input: $input) | ||
newUser(input: $input) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mutation RescindInviteCode($code: ID!) { | ||
rescindInviteCode(code: $code) | ||
rescindInviteCode(code: $code) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mutation ResetPassword($input: ResetPasswordInput!) { | ||
resetPassword(input: $input) | ||
resetPassword(input: $input) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mutation RevokeInvite($input: RevokeInviteInput!) { | ||
revokeInvite(input: $input) | ||
revokeInvite(input: $input) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
mutation UpdateScene($updateData: SceneUpdateInput!) { | ||
sceneUpdate(input: $updateData) { | ||
id | ||
release_date | ||
details | ||
director | ||
code | ||
duration | ||
title | ||
urls { | ||
url | ||
site { | ||
id | ||
name | ||
} | ||
} | ||
studio { | ||
id | ||
release_date | ||
details | ||
director | ||
code | ||
duration | ||
title | ||
urls { | ||
url | ||
site { | ||
id | ||
name | ||
} | ||
performers { | ||
performer { | ||
name | ||
id | ||
gender | ||
aliases | ||
} | ||
} | ||
fingerprints { | ||
hash | ||
algorithm | ||
duration | ||
} | ||
tags { | ||
id | ||
name | ||
description | ||
} | ||
studio { | ||
id | ||
name | ||
} | ||
performers { | ||
performer { | ||
name | ||
id | ||
gender | ||
aliases | ||
} | ||
} | ||
fingerprints { | ||
hash | ||
algorithm | ||
duration | ||
} | ||
tags { | ||
id | ||
name | ||
description | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
query Me { | ||
me { | ||
id | ||
name | ||
roles | ||
} | ||
me { | ||
id | ||
name | ||
roles | ||
} | ||
} |
Oops, something went wrong.