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 page contains optimizations to improve the performance of a production system using `@neo4j/graphql`.
6
+
7
+
== Schema optimizations
8
+
This section covers optimizations to reduce the size of the generated schema. Reducing the schema size has the following performance benefits:
9
+
10
+
* Reduce server startup time.
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 their generation 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