diff --git a/public/app/features/transformers/extractFields/extractFields.ts b/public/app/features/transformers/extractFields/extractFields.ts index 81628b595ed..ede77024b40 100644 --- a/public/app/features/transformers/extractFields/extractFields.ts +++ b/public/app/features/transformers/extractFields/extractFields.ts @@ -41,7 +41,8 @@ function addExtractedFields(frame: DataFrame, options: ExtractFieldsOptions): Da } const source = findField(frame, options.source); if (!source) { - throw new Error('json field not found'); + // this case can happen when there are multiple queries + return frame; } const ext = fieldExtractors.getIfExists(options.format ?? FieldExtractorID.Auto);