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
| graphqlSchemaPaths | List(String) | None | GraphQL schema locations. You can supply multiple paths to GraphQL schemas. |
97
+
| graphqlSchemaPaths | List(String) | (falls back to `graphqlSchemas`) | GraphQL schema locations. You can supply multiple paths to GraphQL schemas. To include many schemas from a folder hierarchy, use the `graphqlSchemas` block instead. |
98
+
| graphqlSchemas | (see table below) | All `.graphqls` files in resources | Block to define the input GraphQL schemas, when exact paths are too cumbersome. See table below for a list of options. |
|`rootDir`| String | Main resources dir | The root directory from which to start searching for schema files. |
123
+
|`recursive`| Boolean |`true`| Whether to recursively look into sub directories. |
124
+
|`includePattern`| String |`.*\.graphqls`| A Java regex that file names must match to be included. It should be a regex as defined by the [Pattern](https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html) JDK class. It will be used to match only the file name without path. |
125
+
|`excludedFiles`| Set<String> | (empty set) | A set of files to exclude, even if they match the include pattern. These paths should be either absolute or relative to the provided `rootDir`. |
| graphqlSchemaPaths | List(String) | None | GraphQL schema locations. You can supply multiple paths to GraphQL schemas. |
59
+
| graphqlSchemaPaths | List(String) | (falls back to `graphqlSchemas`) | GraphQL schema locations. You can supply multiple paths to GraphQL schemas. To include many schemas from a folder hierarchy, use the `graphqlSchemas` block instead. |
60
+
| graphqlSchemas | (see table below) | All `.graphqls` files in resources | Block to define the input GraphQL schemas, when exact paths are too cumbersome. See table below for a list of options. |
|`rootDir`| String | Main resources dir | The root directory from which to start searching for schema files. |
85
+
|`recursive`| Boolean |`true`| Whether to recursively look into sub directories. |
86
+
|`includePattern`| String |`.*\.graphqls`| A Java regex that file names must match to be included. It should be a regex as defined by the [Pattern](https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html) JDK class. It will be used to match only the file name without path. |
87
+
|`excludedFiles`| Set<String> | (empty set) | A set of files to exclude, even if they match the include pattern. These paths should be either absolute or relative to the provided `rootDir`. |
0 commit comments