File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,9 +110,9 @@ export default class RegisterQueries extends Command {
110110
111111 const variables = {
112112 clientIdentity : {
113- clientName : flags . clientName ,
114- clientIdentifier : flags . clientIdentifier || flags . clientName ,
115- clientVersion : flags . clientVersion
113+ name : flags . clientName ,
114+ identifier : flags . clientIdentifier || flags . clientName ,
115+ version : flags . clientVersion
116116 } ,
117117 serviceId : getIdFromKey ( ctx . currentSchema . engineKey ) ,
118118 operations : ctx . manifest . operations
Original file line number Diff line number Diff line change @@ -7,7 +7,10 @@ export const REGISTER_OPERATIONS = gql`
77 $operations: [RegisteredOperationInput!]!
88 ) {
99 service(id: $serviceId) {
10- registerOperations(client: { name: $clientName }, operations: $operations)
10+ registerOperations(
11+ clientIdentity: $clientIdentity
12+ operations: $operations
13+ )
1114 }
1215 }
1316` ;
You can’t perform that action at this time.
0 commit comments