Skip to content

Commit bde0be2

Browse files
committed
[GraphQL] Address PR feedback
1 parent 8a0f6f5 commit bde0be2

File tree

2 files changed

+30
-8
lines changed

2 files changed

+30
-8
lines changed

docs/API.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ query HelloWorld {
176176
| Option | Default | Description |
177177
|-----------------|--------------------------------------------------|------------------------------------------------------------------------|
178178
| service | *Service name of the app suffixed with -graphql* | The service name for this integration. |
179-
| variables | `undefined` *No variables will be recorded* | To enable recording provide a callback. E.g. `variables => variables`. |
179+
| variables | `undefined` | A callback to enable recording of variables. By default, no variables are recorded. For example, using variables => variables would record all variables. |
180180
| depth | -1 | The maximum depth of fields/resolvers to instrument. Set to `0` to only instrument the operation or to -1 to instrument all fields/resolvers. |
181181

182182
<h3 id="http">http / https</h3>

src/plugins/graphql.js

+29-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
'use strict'
22

33
const platform = require('../platform')
4+
const log = require('../log')
45

56
function createWrapExecute (tracer, config, defaultFieldResolver, responsePathAsArray) {
6-
if (typeof config.depth !== 'number') {
7-
config.depth = -1
8-
}
9-
107
return function wrapExecute (execute) {
118
return function executeWithTrace () {
129
const args = normalizeArgs(arguments)
@@ -338,6 +335,31 @@ function addError (span, error) {
338335
return error
339336
}
340337

338+
function validateConfig (config) {
339+
return Object.assign({}, config, {
340+
depth: getDepth(config),
341+
variables: getVariablesFilter(config)
342+
})
343+
}
344+
345+
function getDepth (config) {
346+
if (typeof config.depth === 'number') {
347+
return config.depth
348+
} else if (config.hasOwnProperty('depth')) {
349+
log.error('Expected `depth` to be a integer.')
350+
}
351+
return -1
352+
}
353+
354+
function getVariablesFilter (config) {
355+
if (typeof config.variables === 'function') {
356+
return config.variables
357+
} else if (config.hasOwnProperty('variables')) {
358+
log.error('Expected `variables` to be a function.')
359+
}
360+
return null
361+
}
362+
341363
module.exports = [
342364
{
343365
name: 'graphql',
@@ -346,7 +368,7 @@ module.exports = [
346368
patch (execute, tracer, config) {
347369
this.wrap(execute, 'execute', createWrapExecute(
348370
tracer,
349-
config,
371+
validateConfig(config),
350372
execute.defaultFieldResolver,
351373
execute.responsePathAsArray
352374
))
@@ -360,7 +382,7 @@ module.exports = [
360382
file: 'language/parser.js',
361383
versions: ['0.13.x'],
362384
patch (parser, tracer, config) {
363-
this.wrap(parser, 'parse', createWrapParse(tracer, config))
385+
this.wrap(parser, 'parse', createWrapParse(tracer, validateConfig(config)))
364386
},
365387
unpatch (parser) {
366388
this.unwrap(parser, 'parse')
@@ -371,7 +393,7 @@ module.exports = [
371393
file: 'validation/validate.js',
372394
versions: ['0.13.x'],
373395
patch (validate, tracer, config) {
374-
this.wrap(validate, 'validate', createWrapValidate(tracer, config))
396+
this.wrap(validate, 'validate', createWrapValidate(tracer, validateConfig(config)))
375397
},
376398
unpatch (validate) {
377399
this.unwrap(validate, 'validate')

0 commit comments

Comments
 (0)