Please help in below issue.
1.Created file @^test.docx in assets.

2. After hitting querybuilder api for

3. Why it showing different path for above asset?
1.Created file @^test.docx in assets.

2. After hitting querybuilder api for

3. Why it showing different path for above asset?
@akshaybhujbale If you will look into stack trace you will see that it fails during java.net.URI object creation. Looking into documentation of URI, you can see following information:
URISyntaxException- If the given string violates RFC 2396, as augmented by the above deviations
Going into RFC 2396 - https://www.rfc-editor.org/rfc/rfc2396, section 2.4.3 is what you probably looking for, as it clearly list disallowed characters with proper reasoning. So this is potentially list of character that could be problematic from Query Builder Debugger tool perspective.

In case this is not enough, you can always create simple piece of code that will create URI object and at the same time examine if creation of URI object will fail or not.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.