Skip to content

Commit

Permalink
Merge branch 'main' into cm/typo
Browse files Browse the repository at this point in the history
  • Loading branch information
GracefulLemming authored Jan 23, 2024
2 parents a211d51 + 4e5f24c commit 0094b59
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions website/src/graphql/dailp/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,7 @@ export type DocumentContentsQuery = { readonly __typename?: "Query" } & {
"pageNumber"
> & {
readonly paragraphs: ReadonlyArray<
{ readonly __typename?: "DocumentParagraph" } & Pick<
{ readonly __typename: "DocumentParagraph" } & Pick<
DocumentParagraph,
"id" | "translation" | "index"
> & {
Expand Down Expand Up @@ -1322,7 +1322,7 @@ export type DocFormFieldsFragment = {
}

export type FormFieldsFragment = {
readonly __typename?: "AnnotatedForm"
readonly __typename: "AnnotatedForm"
} & Pick<
AnnotatedForm,
| "id"
Expand Down Expand Up @@ -1926,7 +1926,7 @@ export type UpdateWordMutationVariables = Exact<{
}>

export type UpdateWordMutation = { readonly __typename?: "Mutation" } & {
readonly updateWord: { readonly __typename?: "AnnotatedForm" } & Pick<
readonly updateWord: { readonly __typename: "AnnotatedForm" } & Pick<
AnnotatedForm,
| "id"
| "index"
Expand Down Expand Up @@ -2265,6 +2265,7 @@ export const AudioSliceFieldsFragmentDoc = gql`
`
export const FormFieldsFragmentDoc = gql`
fragment FormFields on AnnotatedForm {
__typename
id
index
source
Expand Down Expand Up @@ -2453,6 +2454,7 @@ export const DocumentContentsDocument = gql`
translatedPages @skip(if: $isReference) {
pageNumber
paragraphs {
__typename
source {
__typename
... on AnnotatedForm {
Expand Down
2 changes: 2 additions & 0 deletions website/src/graphql/dailp/queries.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ query DocumentContents(
translatedPages @skip(if: $isReference) {
pageNumber
paragraphs {
__typename
source {
__typename
... on AnnotatedForm {
Expand Down Expand Up @@ -129,6 +130,7 @@ fragment DocFormFields on AnnotatedDoc {
}

fragment FormFields on AnnotatedForm {
__typename
id
index
source
Expand Down

0 comments on commit 0094b59

Please sign in to comment.