Lewis Munene
Lewis Munene
Is it possible to achieve something like this: `select * from book where author->>'name' = 'John Doe';` `author` is a Postgres column of json type and has a field called...
The bundled Swagger UI does not give an option to authorize requests. Usually, Swagger presents an `Authorize` button when any request is sequred (as shown in the screenshot below). When...
Certain Exceptions occuring during DataFetching are not logged to the console. i.e. their stack-trace. For example, I have the following code: ```java @GraphQLApi public class Test { @GraphQLMutation(name = "createTerritories")...
Could someone point me to a getting started guide/documentation for this library? I am using JPA with Spring Boot and want my service to expose a GraphQl API **Describe alternatives...
The Swagger and Graphiql UIs work well when the `server.servlet.context-path` is not set. But when that property is set, such that the context path becomes anything other than '/', all...
I have two healers defined as follows: ```js heal.addRecipe('clickAndType', { priority: 1, steps: [ 'fillField', 'appendField', ], fn: async ({ step }) => { const locator = step.args[0]; const text...
#### What are you trying to achieve? Wait for the page to navigate to a certain URL and fail the test if it doesn't navigate within the defined timeout ####...
`UnifiedSetWithHashingStrategy` has the addOrReplace() method which performs with O(1) complexity. When you call `.asSynchronized()` on a UnifiedSetWithHashingStrategy, you get a `MutableSet` which is the interface that does not have the...
```java @GrpcAdvice public class ExceptionHandler { @GrpcExceptionHandler(Exception.class) public StatusException handleGenericException(Exception e) { String message = StringUtils.hasText(e.getMessage()) ? e.getMessage() : "An unexpected error occurred. Please try again later"; return Status.INTERNAL.withDescription(message) .withCause(e)...
I am getting the following error when I add a sort query: `java.lang.NoClassDefFoundError: Could not initialize class io.github.perplexhub.rsql.jsonb.JsonbSupport`. If I remove the sort query, the filter works. Environment: ``` Spring...