-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #204 from Bible-Translation-Tools/audiobieldev.wal…
…ink.org Deploy to prod
- Loading branch information
Showing
38 changed files
with
450 additions
and
252 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## Please include a summary of your changes. | ||
|
||
|
||
## Before merging: | ||
* [ ] If this PR targets dev branch, do a Squash-merge. | ||
* [ ] If the target branch is prod, do a Regular merge. |
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
query GetPrimaryReposQuery { | ||
GitRepos: git_repo( | ||
where: { | ||
content: { | ||
wa_content_metadata: { | ||
status: { | ||
_eq: "Primary" | ||
} | ||
} | ||
} | ||
} | ||
) { | ||
repoUrl: repo_url | ||
content { | ||
resourceType: resource_type | ||
language { | ||
languageCode: ietf_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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
schema { | ||
query: Query | ||
} | ||
|
||
input String_comparison_exp { | ||
_eq: String | ||
} | ||
|
||
input git_repo_bool_exp { | ||
_and: [git_repo_bool_exp!] | ||
_not: git_repo_bool_exp | ||
_or: [git_repo_bool_exp!] | ||
content: content_bool_exp | ||
repo_name: String_comparison_exp | ||
repo_url: String_comparison_exp | ||
} | ||
|
||
input content_bool_exp { | ||
_and: [content_bool_exp!] | ||
_not: content_bool_exp | ||
_or: [content_bool_exp!] | ||
language: language_bool_exp | ||
resource_type: String_comparison_exp | ||
wa_content_metadata: wa_content_metadata_bool_exp | ||
} | ||
|
||
input wa_content_metadata_bool_exp { | ||
_and: [wa_content_metadata_bool_exp!] | ||
_not: wa_content_metadata_bool_exp | ||
_or: [wa_content_metadata_bool_exp!] | ||
status: String_comparison_exp | ||
} | ||
|
||
input language_bool_exp { | ||
_and: [language_bool_exp!] | ||
_not: language_bool_exp | ||
_or: [language_bool_exp!] | ||
ietf_code: String_comparison_exp | ||
} | ||
|
||
type Query { | ||
git_repo(where: git_repo_bool_exp): [Repo!]! | ||
} | ||
|
||
type Repo { | ||
repo_url: String | ||
content: Content | ||
} | ||
|
||
type Content { | ||
language: Language | ||
resource_type: String | ||
wa_content_metadata: [ContentMetadata] | ||
} | ||
|
||
type Language { | ||
ietf_code: String | ||
} | ||
|
||
type ContentMetadata { | ||
status: String | ||
} |
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
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
Oops, something went wrong.