Skip to content

Commit

Permalink
Replace more duplicate CreateAuthorInput in docs with `UpdateAuthor…
Browse files Browse the repository at this point in the history
…Input`
  • Loading branch information
spawnia committed Mar 15, 2020
1 parent 468b697 commit a975e7b
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 14 deletions.
5 changes: 3 additions & 2 deletions docs/3.0/guides/relationships.md
Original file line number Diff line number Diff line change
Expand Up @@ -582,8 +582,9 @@ input CreateAuthorInput {
name: String!
}

input CreateAuthorInput {
name: String!
input UpdateAuthorInput {
id: ID!
name: String
}
```

Expand Down
5 changes: 3 additions & 2 deletions docs/3.1/guides/relationships.md
Original file line number Diff line number Diff line change
Expand Up @@ -582,8 +582,9 @@ input CreateAuthorInput {
name: String!
}

input CreateAuthorInput {
name: String!
input UpdateAuthorInput {
id: ID!
name: String
}
```

Expand Down
5 changes: 3 additions & 2 deletions docs/3.2/guides/relationships.md
Original file line number Diff line number Diff line change
Expand Up @@ -583,8 +583,9 @@ input CreateAuthorInput {
name: String!
}

input CreateAuthorInput {
name: String!
input UpdateAuthorInput {
id: ID!
name: String
}
```

Expand Down
5 changes: 3 additions & 2 deletions docs/3.3/guides/relationships.md
Original file line number Diff line number Diff line change
Expand Up @@ -604,8 +604,9 @@ input CreateAuthorInput {
name: String!
}

input CreateAuthorInput {
name: String!
input UpdateAuthorInput {
id: ID!
name: String
}
```

Expand Down
5 changes: 3 additions & 2 deletions docs/3.4/guides/relationships.md
Original file line number Diff line number Diff line change
Expand Up @@ -604,8 +604,9 @@ input CreateAuthorInput {
name: String!
}

input CreateAuthorInput {
name: String!
input UpdateAuthorInput {
id: ID!
name: String
}
```

Expand Down
5 changes: 3 additions & 2 deletions docs/3.5/guides/relationships.md
Original file line number Diff line number Diff line change
Expand Up @@ -604,8 +604,9 @@ input CreateAuthorInput {
name: String!
}

input CreateAuthorInput {
name: String!
input UpdateAuthorInput {
id: ID!
name: String
}
```

Expand Down
5 changes: 3 additions & 2 deletions docs/3.7/eloquent/nested-mutations.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,9 @@ input CreateAuthorInput {
name: String!
}

input CreateAuthorInput {
name: String!
input UpdateAuthorInput {
id: ID!
name: String
}
```

Expand Down

0 comments on commit a975e7b

Please sign in to comment.