Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions website/src/docs/hotchocolate/v11/defining-a-schema/scalars.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The GraphQL specification defines the following scalars.

```sdl
type Product {
description: String;
description: String
}
```

Expand All @@ -26,7 +26,7 @@ It is automatically inferred from the usage of the .NET [string type](https://do

```sdl
type Product {
purchasable: Boolean;
purchasable: Boolean
}
```

Expand All @@ -38,7 +38,7 @@ It is automatically inferred from the usage of the .NET [bool type](https://docs

```sdl
type Product {
quantity: Int;
quantity: Int
}
```

Expand All @@ -50,7 +50,7 @@ It is automatically inferred from the usage of the .NET [int type](https://docs.

```sdl
type Product {
price: Float;
price: Float
}
```

Expand All @@ -64,7 +64,7 @@ It is automatically inferred from the usage of the .NET [float](https://docs.mic

```sdl
type Product {
id: ID!;
id: ID!
}
```

Expand Down
10 changes: 5 additions & 5 deletions website/src/docs/hotchocolate/v12/defining-a-schema/scalars.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The GraphQL specification defines the following scalars.

```sdl
type Product {
description: String;
description: String
}
```

Expand All @@ -26,7 +26,7 @@ It is automatically inferred from the usage of the .NET [string type](https://do

```sdl
type Product {
purchasable: Boolean;
purchasable: Boolean
}
```

Expand All @@ -38,7 +38,7 @@ It is automatically inferred from the usage of the .NET [bool type](https://docs

```sdl
type Product {
quantity: Int;
quantity: Int
}
```

Expand All @@ -50,7 +50,7 @@ It is automatically inferred from the usage of the .NET [int type](https://docs.

```sdl
type Product {
price: Float;
price: Float
}
```

Expand All @@ -64,7 +64,7 @@ It is automatically inferred from the usage of the .NET [float](https://docs.mic

```sdl
type Product {
id: ID!;
id: ID!
}
```

Expand Down
10 changes: 5 additions & 5 deletions website/src/docs/hotchocolate/v13/defining-a-schema/scalars.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The GraphQL specification defines the following scalars.

```sdl
type Product {
description: String;
description: String
}
```

Expand All @@ -26,7 +26,7 @@ It is automatically inferred from the usage of the .NET [string type](https://do

```sdl
type Product {
purchasable: Boolean;
purchasable: Boolean
}
```

Expand All @@ -38,7 +38,7 @@ It is automatically inferred from the usage of the .NET [bool type](https://docs

```sdl
type Product {
quantity: Int;
quantity: Int
}
```

Expand All @@ -50,7 +50,7 @@ It is automatically inferred from the usage of the .NET [int type](https://docs.

```sdl
type Product {
price: Float;
price: Float
}
```

Expand All @@ -64,7 +64,7 @@ It is automatically inferred from the usage of the .NET [float](https://docs.mic

```sdl
type Product {
id: ID!;
id: ID!
}
```

Expand Down
10 changes: 5 additions & 5 deletions website/src/docs/hotchocolate/v14/defining-a-schema/scalars.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The GraphQL specification defines the following scalars.

```sdl
type Product {
description: String;
description: String
}
```

Expand All @@ -26,7 +26,7 @@ It is automatically inferred from the usage of the .NET [string type](https://do

```sdl
type Product {
purchasable: Boolean;
purchasable: Boolean
}
```

Expand All @@ -38,7 +38,7 @@ It is automatically inferred from the usage of the .NET [bool type](https://docs

```sdl
type Product {
quantity: Int;
quantity: Int
}
```

Expand All @@ -50,7 +50,7 @@ It is automatically inferred from the usage of the .NET [int type](https://docs.

```sdl
type Product {
price: Float;
price: Float
}
```

Expand All @@ -64,7 +64,7 @@ It is automatically inferred from the usage of the .NET [float](https://docs.mic

```sdl
type Product {
id: ID!;
id: ID!
}
```

Expand Down
10 changes: 5 additions & 5 deletions website/src/docs/hotchocolate/v15/defining-a-schema/scalars.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The GraphQL specification defines the following scalars.

```sdl
type Product {
description: String;
description: String
}
```

Expand All @@ -26,7 +26,7 @@ It is automatically inferred from the usage of the .NET [string type](https://do

```sdl
type Product {
purchasable: Boolean;
purchasable: Boolean
}
```

Expand All @@ -38,7 +38,7 @@ It is automatically inferred from the usage of the .NET [bool type](https://docs

```sdl
type Product {
quantity: Int;
quantity: Int
}
```

Expand All @@ -50,7 +50,7 @@ It is automatically inferred from the usage of the .NET [int type](https://docs.

```sdl
type Product {
price: Float;
price: Float
}
```

Expand All @@ -64,7 +64,7 @@ It is automatically inferred from the usage of the .NET [float](https://docs.mic

```sdl
type Product {
id: ID!;
id: ID!
}
```

Expand Down
Loading