diff --git a/src/lib/plugins/query/jsonpathQueryLanguage.test.ts b/src/lib/plugins/query/jsonpathQueryLanguage.test.ts index 39db81b4..98c2b7f3 100644 --- a/src/lib/plugins/query/jsonpathQueryLanguage.test.ts +++ b/src/lib/plugins/query/jsonpathQueryLanguage.test.ts @@ -106,7 +106,7 @@ describe('jsonpathQueryLanguage', () => { assert.deepStrictEqual(result, [user2]) }) - test('should throw an error when trying to sort (not supported by jsonpath)', () => { + test('should throw an error when trying to sort (not supported by JSONPath)', () => { assert.throws(() => { createQuery(users, { sort: { @@ -114,7 +114,7 @@ describe('jsonpathQueryLanguage', () => { direction: 'asc' } }) - }, /Sorting is not supported by jsonpath. Please clear the sorting fields/) + }, /Sorting is not supported by JSONPath. Please clear the sorting fields/) }) test('should create and execute a project query for a single property', () => { @@ -137,7 +137,7 @@ describe('jsonpathQueryLanguage', () => { paths: [['user', 'name'], ['_id']] } }) - }, /Error: Picking multiple fields is not supported by jsonpath. Please select only one field/) + }, /Error: Picking multiple fields is not supported by JSONPath. Please select only one field/) }) test('should create and execute a query with filter and project', () => { @@ -158,7 +158,7 @@ describe('jsonpathQueryLanguage', () => { assert.deepStrictEqual(result, ['Stuart', 'Bob']) }) - test('should throw an exception when the query is no valid jsonpath expression', () => { + test('should throw an exception when the query is no valid JSONPath expression', () => { assert.throws(() => { const data = {} const query = '@bla bla bla' diff --git a/src/lib/plugins/query/jsonpathQueryLanguage.ts b/src/lib/plugins/query/jsonpathQueryLanguage.ts index 804384d5..44a7d2ce 100644 --- a/src/lib/plugins/query/jsonpathQueryLanguage.ts +++ b/src/lib/plugins/query/jsonpathQueryLanguage.ts @@ -5,13 +5,13 @@ import type { JSONPath } from 'immutable-json-patch' const description = `

- Enter a jsonpath expression to filter, sort, or transform the data. + Enter a JSONPath expression to filter, sort, or transform the data.

` export const jsonpathQueryLanguage: QueryLanguage = { id: 'jsonpath', - name: 'jsonpath', + name: 'JSONPath', description, createQuery, executeQuery @@ -29,13 +29,13 @@ function createQuery(_json: unknown, queryOptions: QueryLanguageOptions): string } if (sort && sort.path && sort.direction) { - throw new Error('Sorting is not supported by jsonpath. Please clear the sorting fields') + throw new Error('Sorting is not supported by JSONPath. Please clear the sorting fields') } if (projection && projection.paths) { if (projection.paths.length > 1) { throw new Error( - 'Picking multiple fields is not supported by jsonpath. Please select only one field' + 'Picking multiple fields is not supported by JSONPath. Please select only one field' ) }