Tag: spring
-
Software Engineer – Policy – Trustech Inc – Raleigh, NC
Trustech Inc Raleigh, NC $40 – $70 Contract: Independent Work from home 25% Travel Skills Java OPA Open Policy Agent AWS Cloud Spring RESTful API GraphQL Policy as Code Job Description Job Description: We are looking for a highly skilled and motivated Senior Java Developer to join our Workplace Security Services team. As a Senior…
-
Sharing data between @QueryMapping and @SchemaMapping in Java Spring GraphQL
3 I have a schema defined as follows: enum CardType { TYPE_1 TYPE_2 } type Card { id: ID! } type Order { id: ID! cards: [Card]! } input OrderFilter { cardType: CardType } type Query { getOrders(orderFilter: OrderFilter): [Order] } Also, the following resolvers: @QueryMapping public List<Order> getOrders(@Argument OrderFilter orderFilter) { return this.orderService.get(orderFilter); }…