@@ -21,7 +21,7 @@ $ npm install -g apollo
2121$ apollo COMMAND
2222running command...
2323$ apollo (-v| --version| version)
24- apollo/2.1.1 darwin-x64 node-v10.10.0
24+ apollo/2.1.3 darwin-x64 node-v10.10.0
2525$ apollo --help [COMMAND]
2626USAGE
2727 $ apollo COMMAND
@@ -66,9 +66,16 @@ OPTIONS
6666
6767 --endpoint=endpoint The url of your service
6868
69+ --excludes=excludes Glob of files to exclude for GraphQL operations. Caveat: this doesn't currently
70+ work in watch mode
71+
6972 --header=header Additional headers to send to server for introspectionQuery
7073
74+ --includes=includes Glob of files to search for GraphQL operations
75+
7176 --key=key The API key for the Apollo Engine service
77+
78+ --queries=queries Deprecated in favor of the includes flag
7279```
7380
7481_ See code: [ src/commands/client/check.ts] ( https://github.com/apollographql/apollo-tooling/blob/master/packages/apollo/src/commands/client/check.ts ) _
@@ -107,13 +114,20 @@ OPTIONS
107114
108115 --endpoint=endpoint The url of your service
109116
117+ --excludes=excludes Glob of files to exclude for GraphQL operations. Caveat: this doesn't
118+ currently work in watch mode
119+
110120 --globalTypesFile=globalTypesFile By default, TypeScript will put a file named "globalTypes.ts" inside the
111121 "output" directory. Set "globalTypesFile" to specify a different path.
112122
113123 --header=header Additional headers to send to server for introspectionQuery
114124
125+ --includes=includes Glob of files to search for GraphQL operations
126+
115127 --key=key The API key for the Apollo Engine service
116128
129+ --localSchemaFile=localSchemaFile Path to your local GraphQL schema file (introspection result or SDL)
130+
117131 --mergeInFieldsFromFragmentSpreads Merge fragment fields onto its enclosing type
118132
119133 --namespace=namespace The namespace to emit generated code into.
@@ -132,7 +146,7 @@ OPTIONS
132146
133147 --passthroughCustomScalars Use your own types for custom scalars
134148
135- --queries=queries Glob of files to watch for recompilation
149+ --queries=queries Deprecated in favor of the includes flag
136150
137151 --tagName=tagName [default: gql] Name of the template literal tag used to identify template
138152 literals containing GraphQL queries in Javascript/Typescript code
@@ -154,7 +168,7 @@ _See code: [src/commands/client/codegen.ts](https://github.com/apollographql/apo
154168
155169## ` apollo client:extract OUTPUT `
156170
157- Push a service to Engine
171+ Extract queries from a client
158172
159173```
160174USAGE
@@ -175,9 +189,16 @@ OPTIONS
175189
176190 --endpoint=endpoint The url of your service
177191
192+ --excludes=excludes Glob of files to exclude for GraphQL operations. Caveat: this doesn't currently
193+ work in watch mode
194+
178195 --header=header Additional headers to send to server for introspectionQuery
179196
197+ --includes=includes Glob of files to search for GraphQL operations
198+
180199 --key=key The API key for the Apollo Engine service
200+
201+ --queries=queries Deprecated in favor of the includes flag
181202```
182203
183204_ See code: [ src/commands/client/extract.ts] ( https://github.com/apollographql/apollo-tooling/blob/master/packages/apollo/src/commands/client/extract.ts ) _
@@ -202,9 +223,16 @@ OPTIONS
202223
203224 --endpoint=endpoint The url of your service
204225
226+ --excludes=excludes Glob of files to exclude for GraphQL operations. Caveat: this doesn't currently
227+ work in watch mode
228+
205229 --header=header Additional headers to send to server for introspectionQuery
206230
231+ --includes=includes Glob of files to search for GraphQL operations
232+
207233 --key=key The API key for the Apollo Engine service
234+
235+ --queries=queries Deprecated in favor of the includes flag
208236```
209237
210238_ See code: [ src/commands/client/push.ts] ( https://github.com/apollographql/apollo-tooling/blob/master/packages/apollo/src/commands/client/push.ts ) _
@@ -396,11 +424,12 @@ USAGE
396424 $ apollo service:push
397425
398426OPTIONS
399- -c, --config=config Path to your Apollo config file
400- -t, --tag=tag [default: current] The published tag to check this service against
401- --endpoint=endpoint The url of your service
402- --header=header Additional headers to send to server for introspectionQuery
403- --key=key The API key for the Apollo Engine service
427+ -c, --config=config Path to your Apollo config file
428+ -t, --tag=tag [default: current] The tag to publish this service to
429+ --endpoint=endpoint The url of your service
430+ --header=header Additional headers to send to server for introspectionQuery
431+ --key=key The API key for the Apollo Engine service
432+ --localSchemaFile=localSchemaFile Path to your local GraphQL schema file (introspection result or SDL)
404433
405434ALIASES
406435 $ apollo schema:publish
0 commit comments