File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
88## [ Unreleased]
99
10+ ### Removed
11+
12+ - Remove invalid character validation from ` searchMetadata ` query.
13+
1014## [ 1.88.1] - 2025-10-29
1115
1216### Added
Original file line number Diff line number Diff line change @@ -536,11 +536,6 @@ export const queries = {
536536
537537 searchMetadata : async ( _ : any , args : SearchMetadataArgs , ctx : Context ) => {
538538 const queryTerm = args . query
539- if ( queryTerm == null || test ( / [ ? & [ \] = ] / , queryTerm ) ) {
540- throw new UserInputError (
541- `The query term contains invalid characters. query=${ queryTerm } `
542- )
543- }
544539
545540 if ( args . selectedFacets ) {
546541 const { maps, queries } = args . selectedFacets . reduce (
You can’t perform that action at this time.
0 commit comments