You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: SECURITY.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,6 @@ We will provide security updates to the latest major version.
11
11
12
12
## Reporting a Vulnerability
13
13
14
-
Security issues and bugs should be reported privately, via email, to ChilliCream Inc. by emailing [email protected]. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message.
14
+
Security issues and bugs should be reported privately, via email, to ChilliCream Inc. by emailing <[email protected]>. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message.
15
15
16
16
Please do not open issues for anything you think might have a security implication.
I hope this little post will help when you start writing tests for your schema. If you run into any issues or if you have further questions/suggestions head over to our slack channel and we will be happy to help you.
Copy file name to clipboardexpand all lines: website/src/blog/2019-04-12-type-system.md
-3
Original file line number
Diff line number
Diff line change
@@ -413,6 +413,3 @@ As you can see version 9 will bring quite a few improvements, so stay tuned for
413
413
With Hot Chocolate we are building a GraphQL server for the community, so join and help us along.
414
414
415
415
We value any kind of contribution, whether you give us a star, a feedback, find a bug, a typo, or whether you contribute code. Every bit matters and makes our project better.
Copy file name to clipboardexpand all lines: website/src/blog/2019-11-29-schema-design.md
-3
Original file line number
Diff line number
Diff line change
@@ -241,6 +241,3 @@ So, when can you expect 10.3.0. We will deliver nullable ref types with 10.3.0-p
241
241
I hope you are as exited as I am about this. Happy Thanksgiving :) and get a super awesome Hot Chocolate with marshmallows to get into your GraphQL groove.
242
242
243
243
If you want to get into contact with us head over to our slack channel and join our community.
Copy file name to clipboardexpand all lines: website/src/blog/2020-03-18-entity-framework/2020-03-18-entity-framework.md
-3
Original file line number
Diff line number
Diff line change
@@ -1094,6 +1094,3 @@ The example used in this post can be found [here](https://github.com/ChilliCream
1094
1094
We also have a more complex real-time GraphQL server example in multiple flavors and different database integrations [here](https://github.com/ChilliCream/hotchocolate-examples/tree/master/workshop/src/Server).
1095
1095
1096
1096
If you want to get into contact with us head over to our slack channel and join our community.
Copy file name to clipboardexpand all lines: website/src/blog/2021-01-20-hot-chocolate-logging/2021-01-10-hot-chocolate-logging.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -370,7 +370,7 @@ services.AddMiniProfiler
370
370
371
371
Then, when you execute a GraphQL query that uses Entity Framework Core, you'll get results like the following. Notice that not only do you get the GraphQL query with it's variables, but also, you get all the SQL generated by Entity Framework that's run on that Query's behalf. Also notice the timing, you can see the time for the GraphQL query as well as the time for just the SQL.
372
372
373
-

373
+

Copy file name to clipboardexpand all lines: website/src/blog/2021-05-30-entity-framework/2020-03-18-entity-framework.md
-3
Original file line number
Diff line number
Diff line change
@@ -1094,6 +1094,3 @@ The example used in this post can be found [here](https://github.com/ChilliCream
1094
1094
We also have a more complex real-time GraphQL server example in multiple flavors and different database integrations [here](https://github.com/ChilliCream/hotchocolate-examples/tree/master/workshop/src/Server).
1095
1095
1096
1096
If you want to get into contact with us head over to our slack channel and join our community.
Copy file name to clipboardexpand all lines: website/src/docs/bananacakepop/v2/apis/client-registry.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -183,4 +183,4 @@ The general flow for the client registry involves three main steps: validating t
183
183
184
184
2.**Upload the Client**: The second step takes place during your release build. Here, you upload the client to the registry using the `barista client upload` command. This command requires the `--tag` and `--api-id` options. The `--tag` option specifies the tag for the client, and the `--api-id` option specifies the ID of the API to which you are uploading. This command create a new version of the client with the specified tag. The tag is a string that can be used to identify the client. It can be any string, but it is recommended to use a version number, such as `v1` or `v2`; or a commit hash, such as `a1b2c3d4e5f6g7h8i9j0k1l2m3n`. The tag is used to identify the client when publishing it.
185
185
186
-
3.**Publish the Client**: The third step takes place just before the release. Here, you publish the client using the `barista client publish` commands. This command requires the `--tag` and `--api-id` options. The `--tag` option specifies the tag for the client, and the `--api-id` option specifies the ID of the API to which you are uploading. This command publishes the client with the specified tag, making it the active version for the specified API.
186
+
3.**Publish the Client**: The third step takes place just before the release. Here, you publish the client using the `barista client publish` commands. This command requires the `--tag` and `--api-id` options. The `--tag` option specifies the tag for the client, and the `--api-id` option specifies the ID of the API to which you are uploading. This command publishes the client with the specified tag, making it the active version for the specified API.
Copy file name to clipboardexpand all lines: website/src/docs/bananacakepop/v2/apis/schema-registry.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -114,9 +114,9 @@ The schema and client registries work hand-in-hand to ensure the smooth function
114
114
115
115
The general flow for the schema registry involves three main steps: validating the schema, uploading it to the registry, and publishing it.
116
116
117
-
1.**Validate the Schema**: The first step takes place during your Pull Request (PR) build. Here, you validate the schema against the API using the `barista schema validate` command. This ensures that the schema is compatible with the API and will not break existing functionality.
117
+
1.**Validate the Schema**: The first step takes place during your Pull Request (PR) build. Here, you validate the schema against the API using the `barista schema validate` command. This ensures that the schema is compatible with the API and will not break existing functionality.
118
118
119
119
2.**Upload the Schema**: The second step takes place during your release build. Here, you upload the schema to the registry using the `barista schema upload` command. This command requires the `--tag` and `--api-id` options. The `--tag` option specifies the tag for the schema, and the `--api-id` option specifies the ID of the API to which you are uploading. This command create a new version of the schema with the specified tag.
120
120
The tag is a string that can be used to identify the schema. It can be any string, but it is recommended to use a version number, such as `v1` or `v2`; or a commit hash, such as `a1b2c3d4e5f6g7h8i9j0k1l2m3n`. The tag is used to identify the schema when publishing it.
121
121
122
-
3.**Publish the Schema**: The third step takes place just before the release. Here, you publish the schema using the `barista schema publish` command. This command requires the `--tag` and `--api-id` options. The `--tag` option specifies the tag for the schema, and the `--api-id` option specifies the ID of the API to which you are uploading. This command publishes the schema with the specified tag, making it the active version for the specified API.
122
+
3.**Publish the Schema**: The third step takes place just before the release. Here, you publish the schema using the `barista schema publish` command. This command requires the `--tag` and `--api-id` options. The `--tag` option specifies the tag for the schema, and the `--api-id` option specifies the ID of the API to which you are uploading. This command publishes the schema with the specified tag, making it the active version for the specified API.
Copy file name to clipboardexpand all lines: website/src/docs/hotchocolate/v11/api-reference/filtering.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1871,7 +1871,7 @@ Hot Chocolate can translate incoming filters requests directly onto collections
1871
1871
1872
1872
Filter conventions make it easier to change how an expression should be generated. There are three different extension points you can use to change the behavior of the expression visitor. You do not have to worry about the visiting of the input object itself.
1873
1873
1874
-
#####Describe the Expression Visitor
1874
+
#### Describe the Expression Visitor
1875
1875
1876
1876
The expression visitor descriptor is accessible through the filter convention. By calling `UseExpressionVisitor` on the convention descriptor you gain access. The expression visitor has the default set of expressions pre-configured.
0 commit comments