Nikita Bahliuk
Nikita Bahliuk
In our schema we have inputs that heavily used in queries/mutations and may have a very well defined validation. Example: ```graphql scalar IpAddress input IpAddressRangeInput { from: IpAddress! to: IpAddress!...
Fix Issue #154 Fix case when individual entries are under the threshold, but total batch size exceeds the threshold. Add test case covering the use-case, adjust old test that is...
`sendMessageBatch` edge case when individual batch entries are close to limit (not over the limit)
There is unhandled edge-case in the current `sendMessageBatch` implementation: According to documentation here: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-batch-api-actions.html ``` The total size of all messages that you send in a single SendMessageBatch call can't...
GraphQL errors have a `path` field that helps clients to locate the path in graph where error happened. I am writing some custom directive implementation on top of `validator.Walk` and...