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
This chapter contains some optimizations to improve the performance of a production system using `@neo4j/graphql`.
6
+
7
+
== Schema Optimisations
8
+
This section covers improvements to reduce the size of the generated schema. Reducing the schema size has the following performance benefits:
9
+
10
+
* Reduce the startup time of the server.
11
+
* Reduce memory footprint.
12
+
13
+
=== Exclude `@deprecated` fields
14
+
The `@neo4j/graphql` library generates some GraphQL fields and operations marked as `@deprecated`. These exists to keep compatibility with previous versions of the library.
15
+
16
+
If you are not using these deprecated fields, you can disable generation for these with the `excludeDeprecatedFields` flag in the library setup.
17
+
18
+
The following example disables all deprecated fields that are generated in the library:
0 commit comments