├── .babelrc ├── .dockerignore ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── index.js ├── nodemon.json ├── package.json ├── src └── server │ ├── clients │ └── deputados-api.js │ ├── config │ └── index.js │ ├── index.js │ ├── resolvers │ ├── Bloco │ │ └── Bloco.js │ ├── Deputado │ │ └── Deputado.js │ ├── Evento │ │ └── Evento.js │ ├── Legislatura │ │ └── Legislatura.js │ ├── Orgao │ │ └── Orgao.js │ ├── Partido │ │ └── Partido.js │ ├── Proposicao │ │ └── Proposicao.js │ ├── Query.js │ └── Votacao │ │ └── Votacao.js │ ├── types │ ├── Bloco │ │ └── types.graphql │ ├── Deputado │ │ └── types.graphql │ ├── Evento │ │ └── types.graphql │ ├── Legislatura │ │ └── types.graphql │ ├── Mesa │ │ └── types.graphql │ ├── Orgao │ │ └── types.graphql │ ├── PageInfo │ │ └── types.graphql │ ├── Partido │ │ └── types.graphql │ ├── Pauta │ │ └── types.graphql │ ├── Proposicao │ │ └── types.graphql │ ├── Query │ │ └── types.graphql │ ├── Situacao │ │ └── types.graphql │ ├── Votacao │ │ └── types.graphql │ └── index.js │ └── utils │ ├── object.js │ └── pagination.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | require('./src/server').default(); 2 | -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/package.json -------------------------------------------------------------------------------- /src/server/clients/deputados-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/clients/deputados-api.js -------------------------------------------------------------------------------- /src/server/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/config/index.js -------------------------------------------------------------------------------- /src/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/index.js -------------------------------------------------------------------------------- /src/server/resolvers/Bloco/Bloco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/resolvers/Bloco/Bloco.js -------------------------------------------------------------------------------- /src/server/resolvers/Deputado/Deputado.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/resolvers/Deputado/Deputado.js -------------------------------------------------------------------------------- /src/server/resolvers/Evento/Evento.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/resolvers/Evento/Evento.js -------------------------------------------------------------------------------- /src/server/resolvers/Legislatura/Legislatura.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/resolvers/Legislatura/Legislatura.js -------------------------------------------------------------------------------- /src/server/resolvers/Orgao/Orgao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/resolvers/Orgao/Orgao.js -------------------------------------------------------------------------------- /src/server/resolvers/Partido/Partido.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/resolvers/Partido/Partido.js -------------------------------------------------------------------------------- /src/server/resolvers/Proposicao/Proposicao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/resolvers/Proposicao/Proposicao.js -------------------------------------------------------------------------------- /src/server/resolvers/Query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/resolvers/Query.js -------------------------------------------------------------------------------- /src/server/resolvers/Votacao/Votacao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/resolvers/Votacao/Votacao.js -------------------------------------------------------------------------------- /src/server/types/Bloco/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Bloco/types.graphql -------------------------------------------------------------------------------- /src/server/types/Deputado/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Deputado/types.graphql -------------------------------------------------------------------------------- /src/server/types/Evento/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Evento/types.graphql -------------------------------------------------------------------------------- /src/server/types/Legislatura/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Legislatura/types.graphql -------------------------------------------------------------------------------- /src/server/types/Mesa/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Mesa/types.graphql -------------------------------------------------------------------------------- /src/server/types/Orgao/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Orgao/types.graphql -------------------------------------------------------------------------------- /src/server/types/PageInfo/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/PageInfo/types.graphql -------------------------------------------------------------------------------- /src/server/types/Partido/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Partido/types.graphql -------------------------------------------------------------------------------- /src/server/types/Pauta/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Pauta/types.graphql -------------------------------------------------------------------------------- /src/server/types/Proposicao/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Proposicao/types.graphql -------------------------------------------------------------------------------- /src/server/types/Query/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Query/types.graphql -------------------------------------------------------------------------------- /src/server/types/Situacao/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Situacao/types.graphql -------------------------------------------------------------------------------- /src/server/types/Votacao/types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/Votacao/types.graphql -------------------------------------------------------------------------------- /src/server/types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/types/index.js -------------------------------------------------------------------------------- /src/server/utils/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/utils/object.js -------------------------------------------------------------------------------- /src/server/utils/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/src/server/utils/pagination.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusrocha89/graphql-camara-deputados/HEAD/yarn.lock --------------------------------------------------------------------------------