Theofanis Despoudis

Results 224 comments of Theofanis Despoudis

PR https://github.com/audreyr/cookiecutter/pull/980

Hello there. I'm also interested in helping here. Is there a **Contributing.md** document available so that new people like me can get up to speed with submitting PRs?

Hello @Rennbon. That is a great addition. I noticed that you add a new dependency for [testing here](https://github.com/DATA-DOG/go-sqlmock/pull/280/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6R7). Do you think you can rewrite the test cases using the vanilla...

> I wonder why you ask me :) > > Personally, I do use testify; but if this project does not use it yet and has the policy to avoid...

@Rennbon Thank you. Will try to test it this week a bit more.

@l3pp4rd Is there a way to add this PR in Travis CI/CD pipeline please. It seems that I'm not able to see the test results in order to merge. Thank...

@LeOndaz I didn't find any issues with a different name:. For example I created another example in the examples folder named simple_example: ```python import graphene from simple_example import Patron as...

Note that you cannot have duplicate Fields as per GraphQL spec: https://spec.graphql.org/June2018/#sec-Language.Fields >Fields in the top‐level selection set of an operation often represent some information that is globally accessible to...

What you want probably is a schema merging function with conflict resolution such as this one: https://www.graphql-tools.com/docs/schema-stitching/stitch-combining-schemas#duplicate-types Not sure if it's supported here.