Skip to content

Commit

Permalink
Bool! -> Boolean!
Browse files Browse the repository at this point in the history
  • Loading branch information
dphm committed Sep 11, 2020
1 parent 7477a6e commit 21f11a2
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 28 deletions.
14 changes: 7 additions & 7 deletions TUTORIAL.md
Expand Up @@ -94,7 +94,7 @@ interface Collection {
type AutomaticCollection implements Collection {
id: ID!
rules: [AutomaticCollectionRule!]!
rulesApplyDisjunctively: Bool!
rulesApplyDisjunctively: Boolean!
memberships: [CollectionMembership!]!
title: String!
imageId: ID
Expand Down Expand Up @@ -306,7 +306,7 @@ Restoring our naive fields adjusted for our new structure, we get:
type Collection {
id: ID!
rules: [CollectionRule!]!
rulesApplyDisjunctively: Bool!
rulesApplyDisjunctively: Boolean!
products: [Product!]!
title: String!
imageId: ID
Expand Down Expand Up @@ -396,7 +396,7 @@ type Collection implements Node {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -502,7 +502,7 @@ type Image {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -585,7 +585,7 @@ type Collection implements Node {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -653,7 +653,7 @@ specifically dedicated to solving this problem. Practically, this looks like:
```graphql
type Collection implements Node {
# ...
hasProduct(id: ID!): Bool!
hasProduct(id: ID!): Boolean!
}
```
This field takes the ID of a product and returns a boolean based on the server
Expand Down Expand Up @@ -818,7 +818,7 @@ type Mutation {

input CollectionRuleSetInput {
rules: [CollectionRuleInput!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

input CollectionRuleInput {
Expand Down
14 changes: 7 additions & 7 deletions lang/TUTORIAL_JAPANESE.md
Expand Up @@ -48,7 +48,7 @@ interface Collection {
type AutomaticCollection implements Collection {
id: ID!
rules: [AutomaticCollectionRule!]!
rulesApplyDisjunctively: Bool!
rulesApplyDisjunctively: Boolean!
memberships: [CollectionMembership!]!
title: String!
imageId: ID
Expand Down Expand Up @@ -232,7 +232,7 @@ GraphQLにおいて要素を追加するという操作は簡単ですが、そ
type Collection {
id: ID!
rules: [CollectionRule!]!
rulesApplyDisjunctively: Bool!
rulesApplyDisjunctively: Boolean!
products: [Product!]!
title: String!
imageId: ID
Expand Down Expand Up @@ -314,7 +314,7 @@ type Collection implements Node {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -407,7 +407,7 @@ type Image {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -484,7 +484,7 @@ type Collection implements Node {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -543,7 +543,7 @@ enum CollectionRuleRelation {
```graphql
type Collection implements Node {
# ...
hasProduct(id: ID!): Bool!
hasProduct(id: ID!): Boolean!
}
```

Expand Down Expand Up @@ -676,7 +676,7 @@ type Mutation {

input CollectionRuleSetInput {
rules: [CollectionRuleInput!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

input CollectionRuleInput {
Expand Down
14 changes: 7 additions & 7 deletions lang/TUTORIAL_KOREAN.md
Expand Up @@ -43,7 +43,7 @@ interface Collection {
type AutomaticCollection implements Collection {
id: ID!
rules: [AutomaticCollectionRule!]!
rulesApplyDisjunctively: Bool!
rulesApplyDisjunctively: Boolean!
memberships: [CollectionMembership!]!
title: String!
imageId: ID
Expand Down Expand Up @@ -210,7 +210,7 @@ collection에 대해 깊이 이해하고 있지 않더라도, 실제로 모델
type Collection {
id: ID!
rules: [CollectionRule!]!
rulesApplyDisjunctively: Bool!
rulesApplyDisjunctively: Boolean!
products: [Product!]!
title: String!
imageId: ID
Expand Down Expand Up @@ -275,7 +275,7 @@ type Collection implements Node {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -350,7 +350,7 @@ type Image {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -400,7 +400,7 @@ type Collection implements Node {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -449,7 +449,7 @@ enum CollectionRuleRelation {
```graphql
type Collection implements Node {
# ...
hasProduct(id: ID!): Bool!
hasProduct(id: ID!): Boolean!
}
```

Expand Down Expand Up @@ -540,7 +540,7 @@ type Mutation {

input CollectionRuleSetInput {
rules: [CollectionRuleInput!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

input CollectionRuleInput {
Expand Down
14 changes: 7 additions & 7 deletions lang/TUTORIAL_SPANISH.md
Expand Up @@ -94,7 +94,7 @@ interface Collection {
type AutomaticCollection implements Collection {
id: ID!
rules: [AutomaticCollectionRule!]!
rulesApplyDisjunctively: Bool!
rulesApplyDisjunctively: Boolean!
memberships: [CollectionMembership!]!
title: String!
imageId: ID
Expand Down Expand Up @@ -306,7 +306,7 @@ Restaurando los campos ingenuos ajustados para nuestro nuevo esquema obtenemos:
type Collection {
id: ID!
rules: [CollectionRule!]!
rulesApplyDisjunctively: Bool!
rulesApplyDisjunctively: Boolean!
products: [Product!]!
title: String!
imageId: ID
Expand Down Expand Up @@ -396,7 +396,7 @@ type Collection implements Node {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -502,7 +502,7 @@ type Image {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -585,7 +585,7 @@ type Collection implements Node {

type CollectionRuleSet {
rules: [CollectionRule!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

type CollectionRule {
Expand Down Expand Up @@ -653,7 +653,7 @@ específicamente dedicado a solucionar este problema. Prácticamente, esto se ve
```graphql
type Collection implements Node {
# ...
hasProduct(id: ID!): Bool!
hasProduct(id: ID!): Boolean!
}
```
Este campo toma el ID de un producto y regresa un booleano basado en si el servidor
Expand Down Expand Up @@ -818,7 +818,7 @@ type Mutation {

input CollectionRuleSetInput {
rules: [CollectionRuleInput!]!
appliesDisjunctively: Bool!
appliesDisjunctively: Boolean!
}

input CollectionRuleInput {
Expand Down

0 comments on commit 21f11a2

Please sign in to comment.