├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── build-pipeline.yml │ └── dependency-updates.yml ├── .gitignore ├── .template_config └── template.json ├── CleanGraphQLApi.sln ├── Dockerfile ├── LICENSE.md ├── NUGET.md ├── NuGet.config ├── README.md ├── docker-compose.yml ├── docs └── RUN.md ├── global.json ├── icon.png ├── src ├── Application │ ├── Application.csproj │ ├── Authors │ │ ├── Entities │ │ │ └── Author.cs │ │ ├── IAuthorsRepository.cs │ │ └── Queries │ │ │ ├── GetAuthorById │ │ │ ├── GetAuthorByIdHandler.cs │ │ │ ├── GetAuthorByIdQuery.cs │ │ │ └── GetAuthorByIdValidator.cs │ │ │ └── GetAuthors │ │ │ ├── GetAuthorsHandler.cs │ │ │ └── GetAuthorsQuery.cs │ ├── Common │ │ ├── Behaviours │ │ │ └── ValidationBehaviour.cs │ │ ├── Entities │ │ │ └── Entity.cs │ │ ├── Enums │ │ │ └── EntityType.cs │ │ └── Exceptions │ │ │ └── NotFoundException.cs │ ├── DependencyInjection.cs │ ├── Movies │ │ ├── Entities │ │ │ └── Movie.cs │ │ ├── IMoviesRepository.cs │ │ └── Queries │ │ │ ├── GetMovieById │ │ │ ├── GetMovieByIdHandler.cs │ │ │ ├── GetMovieByIdQuery.cs │ │ │ └── GetMovieByIdValidator.cs │ │ │ └── GetMovies │ │ │ ├── GetMoviesHandler.cs │ │ │ └── GetMoviesQuery.cs │ ├── Reviews │ │ ├── Commands │ │ │ ├── CreateReview │ │ │ │ ├── CreateReviewCommand.cs │ │ │ │ ├── CreateReviewHandler.cs │ │ │ │ └── CreateReviewValidator.cs │ │ │ ├── DeleteReview │ │ │ │ ├── DeleteReviewCommand.cs │ │ │ │ ├── DeleteReviewHandler.cs │ │ │ │ └── DeleteReviewValidator.cs │ │ │ └── UpdateReview │ │ │ │ ├── UpdateReviewCommand.cs │ │ │ │ ├── UpdateReviewHandler.cs │ │ │ │ └── UpdateReviewValidator.cs │ │ ├── Entities │ │ │ └── Review.cs │ │ ├── IReviewsRepository.cs │ │ └── Queries │ │ │ ├── GetReviewById │ │ │ ├── GetReviewByIdHandler.cs │ │ │ ├── GetReviewByIdQuery.cs │ │ │ └── GetReviewByIdValidator.cs │ │ │ └── GetReviews │ │ │ ├── GetReviewsHandler.cs │ │ │ └── GetReviewsQuery.cs │ └── Versions │ │ ├── Entities │ │ └── ApplicationVersion.cs │ │ └── Queries │ │ └── GetVersion │ │ ├── GetVersionHandler.cs │ │ └── GetVersionQuery.cs ├── Infrastructure │ ├── Databases │ │ └── MoviesReviews │ │ │ ├── Configuration │ │ │ ├── AuthorConfiguration.cs │ │ │ ├── EntityConfiguration.cs │ │ │ └── MovieConfiguration.cs │ │ │ ├── EntityFrameworkMovieReviewsRepository.cs │ │ │ ├── Extensions │ │ │ └── MovieReviewsDbContextExtensions.cs │ │ │ ├── Mapping │ │ │ ├── AuthorMappingProfile.cs │ │ │ ├── EntitiyMappingProfile.cs │ │ │ ├── MovieMappingProfile.cs │ │ │ └── ReviewMappingProfile.cs │ │ │ ├── Models │ │ │ ├── Author.cs │ │ │ ├── Entity.cs │ │ │ ├── Movie.cs │ │ │ └── Review.cs │ │ │ └── MovieReviewsDbContext.cs │ ├── DependencyInjection.cs │ └── Infrastructure.csproj └── Presentation │ ├── DependencyInjection.cs │ ├── Errors │ └── ApiError.cs │ ├── Extensions │ ├── ApplicationBuilderExtensions.cs │ └── ProgramExtensions.cs │ ├── GraphQL │ ├── InputTypes │ │ ├── CreateReviewInputType.cs │ │ └── UpdateReviewInputType.cs │ ├── MovieReviewSchema.cs │ ├── Mutations │ │ └── MovieReviewMutations.cs │ ├── Queries │ │ └── MovieReviewQueries.cs │ └── Types │ │ ├── AuthorType.cs │ │ ├── MovieType.cs │ │ └── ReviewType.cs │ ├── Presentation.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── README.md │ ├── appsettings.docker.json │ ├── appsettings.json │ └── appsettings.local.json ├── template.nuspec └── tests ├── Application.Tests.Unit ├── Application.Tests.Unit.csproj ├── Authors │ └── Queries │ │ ├── GetAuthorById │ │ ├── GetAuthorByIdHandlerTests.cs │ │ └── GetAuthorByIdValidatorTests.cs │ │ └── GetAuthors │ │ └── ReadAllHandlerTests.cs ├── Common │ └── Behaviours │ │ └── ValidationBehaviourTests.cs ├── Movies │ └── Queries │ │ ├── GetMovieById │ │ ├── GetReviewByIdHandlerTests.cs │ │ └── GetReviewByIdValidatorTests.cs │ │ └── GetMovies │ │ └── GetMoviesHandlerTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Reviews │ ├── Commands │ │ ├── CreateReview │ │ │ ├── CreateReviewHandlerTests.cs │ │ │ └── CreateReviewValidatorTests.cs │ │ ├── DeleteReview │ │ │ ├── DeleteReviewHandlerTests.cs │ │ │ └── DeleteReviewValidatorTests.cs │ │ └── UpdateReview │ │ │ ├── UpdateReviewHandlerTests.cs │ │ │ └── UpdateReviewValidatorTests.cs │ └── Queries │ │ ├── GetReviewById │ │ ├── GetReviewByIdHandlerTests.cs │ │ └── GetReviewByIdValidatorTests.cs │ │ └── GetReviews │ │ └── GetReviewsHandlerTests.cs ├── Version │ └── Queries │ │ └── GetVersion │ │ └── GetVersionHandlerTests.cs └── xunit.runner.json ├── Infrastructure.Tests.Integration ├── Databases │ └── MovieReviews │ │ ├── EntityFrameworkMovieReviewsRepositoryTests.cs │ │ ├── Extensions │ │ └── MovieReviewsCollectionData.cs │ │ ├── MappingConfigurationTests.cs │ │ ├── MovieReviewsCollectionFixture.cs │ │ └── MovieReviewsConfigurationTests.cs ├── Infrastructure.Tests.Integration.csproj ├── Properties │ └── AssemblyInfo.cs └── xunit.runner.json └── Presentation.Tests.Integration ├── GraphQL ├── Authors │ ├── AuthorData.cs │ └── AuthorTests.cs ├── Common │ ├── Data.cs │ ├── Error.cs │ ├── Execution.cs │ ├── Extensions.cs │ ├── GraphData.cs │ ├── Parsing.cs │ └── Tracing.cs ├── Movies │ ├── MovieData.cs │ └── MovieTests.cs └── Reviews │ ├── Create │ └── CreateReviewInputData.cs │ ├── Delete │ └── DeleteReviewInputData.cs │ ├── Query │ └── ReviewData.cs │ ├── ReviewTests.cs │ └── Update │ └── UpdateReviewInputData.cs ├── GraphQLApplication.cs ├── Presentation.Tests.Integration.csproj ├── Properties └── AssemblyInfo.cs ├── Serializer.cs └── xunit.runner.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/.github/workflows/build-pipeline.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-updates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/.github/workflows/dependency-updates.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/.gitignore -------------------------------------------------------------------------------- /.template_config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/.template_config/template.json -------------------------------------------------------------------------------- /CleanGraphQLApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/CleanGraphQLApi.sln -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NUGET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/NUGET.md -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/RUN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/docs/RUN.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/global.json -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/icon.png -------------------------------------------------------------------------------- /src/Application/Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Application.csproj -------------------------------------------------------------------------------- /src/Application/Authors/Entities/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Authors/Entities/Author.cs -------------------------------------------------------------------------------- /src/Application/Authors/IAuthorsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Authors/IAuthorsRepository.cs -------------------------------------------------------------------------------- /src/Application/Authors/Queries/GetAuthorById/GetAuthorByIdHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Authors/Queries/GetAuthorById/GetAuthorByIdHandler.cs -------------------------------------------------------------------------------- /src/Application/Authors/Queries/GetAuthorById/GetAuthorByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Authors/Queries/GetAuthorById/GetAuthorByIdQuery.cs -------------------------------------------------------------------------------- /src/Application/Authors/Queries/GetAuthorById/GetAuthorByIdValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Authors/Queries/GetAuthorById/GetAuthorByIdValidator.cs -------------------------------------------------------------------------------- /src/Application/Authors/Queries/GetAuthors/GetAuthorsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Authors/Queries/GetAuthors/GetAuthorsHandler.cs -------------------------------------------------------------------------------- /src/Application/Authors/Queries/GetAuthors/GetAuthorsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Authors/Queries/GetAuthors/GetAuthorsQuery.cs -------------------------------------------------------------------------------- /src/Application/Common/Behaviours/ValidationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Common/Behaviours/ValidationBehaviour.cs -------------------------------------------------------------------------------- /src/Application/Common/Entities/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Common/Entities/Entity.cs -------------------------------------------------------------------------------- /src/Application/Common/Enums/EntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Common/Enums/EntityType.cs -------------------------------------------------------------------------------- /src/Application/Common/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Common/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /src/Application/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/DependencyInjection.cs -------------------------------------------------------------------------------- /src/Application/Movies/Entities/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Movies/Entities/Movie.cs -------------------------------------------------------------------------------- /src/Application/Movies/IMoviesRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Movies/IMoviesRepository.cs -------------------------------------------------------------------------------- /src/Application/Movies/Queries/GetMovieById/GetMovieByIdHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Movies/Queries/GetMovieById/GetMovieByIdHandler.cs -------------------------------------------------------------------------------- /src/Application/Movies/Queries/GetMovieById/GetMovieByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Movies/Queries/GetMovieById/GetMovieByIdQuery.cs -------------------------------------------------------------------------------- /src/Application/Movies/Queries/GetMovieById/GetMovieByIdValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Movies/Queries/GetMovieById/GetMovieByIdValidator.cs -------------------------------------------------------------------------------- /src/Application/Movies/Queries/GetMovies/GetMoviesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Movies/Queries/GetMovies/GetMoviesHandler.cs -------------------------------------------------------------------------------- /src/Application/Movies/Queries/GetMovies/GetMoviesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Movies/Queries/GetMovies/GetMoviesQuery.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Commands/CreateReview/CreateReviewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Commands/CreateReview/CreateReviewCommand.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Commands/CreateReview/CreateReviewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Commands/CreateReview/CreateReviewHandler.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Commands/CreateReview/CreateReviewValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Commands/CreateReview/CreateReviewValidator.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Commands/DeleteReview/DeleteReviewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Commands/DeleteReview/DeleteReviewCommand.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Commands/DeleteReview/DeleteReviewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Commands/DeleteReview/DeleteReviewHandler.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Commands/DeleteReview/DeleteReviewValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Commands/DeleteReview/DeleteReviewValidator.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Commands/UpdateReview/UpdateReviewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Commands/UpdateReview/UpdateReviewCommand.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Commands/UpdateReview/UpdateReviewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Commands/UpdateReview/UpdateReviewHandler.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Commands/UpdateReview/UpdateReviewValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Commands/UpdateReview/UpdateReviewValidator.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Entities/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Entities/Review.cs -------------------------------------------------------------------------------- /src/Application/Reviews/IReviewsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/IReviewsRepository.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Queries/GetReviewById/GetReviewByIdHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Queries/GetReviewById/GetReviewByIdHandler.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Queries/GetReviewById/GetReviewByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Queries/GetReviewById/GetReviewByIdQuery.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Queries/GetReviewById/GetReviewByIdValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Queries/GetReviewById/GetReviewByIdValidator.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Queries/GetReviews/GetReviewsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Queries/GetReviews/GetReviewsHandler.cs -------------------------------------------------------------------------------- /src/Application/Reviews/Queries/GetReviews/GetReviewsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Reviews/Queries/GetReviews/GetReviewsQuery.cs -------------------------------------------------------------------------------- /src/Application/Versions/Entities/ApplicationVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Versions/Entities/ApplicationVersion.cs -------------------------------------------------------------------------------- /src/Application/Versions/Queries/GetVersion/GetVersionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Versions/Queries/GetVersion/GetVersionHandler.cs -------------------------------------------------------------------------------- /src/Application/Versions/Queries/GetVersion/GetVersionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Application/Versions/Queries/GetVersion/GetVersionQuery.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Configuration/AuthorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Configuration/AuthorConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Configuration/EntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Configuration/EntityConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Configuration/MovieConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Configuration/MovieConfiguration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/EntityFrameworkMovieReviewsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/EntityFrameworkMovieReviewsRepository.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Extensions/MovieReviewsDbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Extensions/MovieReviewsDbContextExtensions.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Mapping/AuthorMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Mapping/AuthorMappingProfile.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Mapping/EntitiyMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Mapping/EntitiyMappingProfile.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Mapping/MovieMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Mapping/MovieMappingProfile.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Mapping/ReviewMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Mapping/ReviewMappingProfile.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Models/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Models/Author.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Models/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Models/Entity.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Models/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Models/Movie.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/Models/Review.cs -------------------------------------------------------------------------------- /src/Infrastructure/Databases/MoviesReviews/MovieReviewsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Databases/MoviesReviews/MovieReviewsDbContext.cs -------------------------------------------------------------------------------- /src/Infrastructure/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/DependencyInjection.cs -------------------------------------------------------------------------------- /src/Infrastructure/Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Infrastructure/Infrastructure.csproj -------------------------------------------------------------------------------- /src/Presentation/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/DependencyInjection.cs -------------------------------------------------------------------------------- /src/Presentation/Errors/ApiError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/Errors/ApiError.cs -------------------------------------------------------------------------------- /src/Presentation/Extensions/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/Extensions/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Presentation/Extensions/ProgramExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/Extensions/ProgramExtensions.cs -------------------------------------------------------------------------------- /src/Presentation/GraphQL/InputTypes/CreateReviewInputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/GraphQL/InputTypes/CreateReviewInputType.cs -------------------------------------------------------------------------------- /src/Presentation/GraphQL/InputTypes/UpdateReviewInputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/GraphQL/InputTypes/UpdateReviewInputType.cs -------------------------------------------------------------------------------- /src/Presentation/GraphQL/MovieReviewSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/GraphQL/MovieReviewSchema.cs -------------------------------------------------------------------------------- /src/Presentation/GraphQL/Mutations/MovieReviewMutations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/GraphQL/Mutations/MovieReviewMutations.cs -------------------------------------------------------------------------------- /src/Presentation/GraphQL/Queries/MovieReviewQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/GraphQL/Queries/MovieReviewQueries.cs -------------------------------------------------------------------------------- /src/Presentation/GraphQL/Types/AuthorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/GraphQL/Types/AuthorType.cs -------------------------------------------------------------------------------- /src/Presentation/GraphQL/Types/MovieType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/GraphQL/Types/MovieType.cs -------------------------------------------------------------------------------- /src/Presentation/GraphQL/Types/ReviewType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/GraphQL/Types/ReviewType.cs -------------------------------------------------------------------------------- /src/Presentation/Presentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/Presentation.csproj -------------------------------------------------------------------------------- /src/Presentation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/Program.cs -------------------------------------------------------------------------------- /src/Presentation/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Presentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/README.md -------------------------------------------------------------------------------- /src/Presentation/appsettings.docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/appsettings.docker.json -------------------------------------------------------------------------------- /src/Presentation/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/appsettings.json -------------------------------------------------------------------------------- /src/Presentation/appsettings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/src/Presentation/appsettings.local.json -------------------------------------------------------------------------------- /template.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/template.nuspec -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Application.Tests.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Application.Tests.Unit.csproj -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Authors/Queries/GetAuthorById/GetAuthorByIdHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Authors/Queries/GetAuthorById/GetAuthorByIdHandlerTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Authors/Queries/GetAuthorById/GetAuthorByIdValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Authors/Queries/GetAuthorById/GetAuthorByIdValidatorTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Authors/Queries/GetAuthors/ReadAllHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Authors/Queries/GetAuthors/ReadAllHandlerTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Common/Behaviours/ValidationBehaviourTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Common/Behaviours/ValidationBehaviourTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Movies/Queries/GetMovieById/GetReviewByIdHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Movies/Queries/GetMovieById/GetReviewByIdHandlerTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Movies/Queries/GetMovieById/GetReviewByIdValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Movies/Queries/GetMovieById/GetReviewByIdValidatorTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Movies/Queries/GetMovies/GetMoviesHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Movies/Queries/GetMovies/GetMoviesHandlerTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics.CodeAnalysis; 2 | 3 | [assembly: ExcludeFromCodeCoverage] 4 | -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Reviews/Commands/CreateReview/CreateReviewHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Reviews/Commands/CreateReview/CreateReviewHandlerTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Reviews/Commands/CreateReview/CreateReviewValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Reviews/Commands/CreateReview/CreateReviewValidatorTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Reviews/Commands/DeleteReview/DeleteReviewHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Reviews/Commands/DeleteReview/DeleteReviewHandlerTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Reviews/Commands/DeleteReview/DeleteReviewValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Reviews/Commands/DeleteReview/DeleteReviewValidatorTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Reviews/Commands/UpdateReview/UpdateReviewHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Reviews/Commands/UpdateReview/UpdateReviewHandlerTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Reviews/Commands/UpdateReview/UpdateReviewValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Reviews/Commands/UpdateReview/UpdateReviewValidatorTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Reviews/Queries/GetReviewById/GetReviewByIdHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Reviews/Queries/GetReviewById/GetReviewByIdHandlerTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Reviews/Queries/GetReviewById/GetReviewByIdValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Reviews/Queries/GetReviewById/GetReviewByIdValidatorTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Reviews/Queries/GetReviews/GetReviewsHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Reviews/Queries/GetReviews/GetReviewsHandlerTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/Version/Queries/GetVersion/GetVersionHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/Version/Queries/GetVersion/GetVersionHandlerTests.cs -------------------------------------------------------------------------------- /tests/Application.Tests.Unit/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Application.Tests.Unit/xunit.runner.json -------------------------------------------------------------------------------- /tests/Infrastructure.Tests.Integration/Databases/MovieReviews/EntityFrameworkMovieReviewsRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Infrastructure.Tests.Integration/Databases/MovieReviews/EntityFrameworkMovieReviewsRepositoryTests.cs -------------------------------------------------------------------------------- /tests/Infrastructure.Tests.Integration/Databases/MovieReviews/Extensions/MovieReviewsCollectionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Infrastructure.Tests.Integration/Databases/MovieReviews/Extensions/MovieReviewsCollectionData.cs -------------------------------------------------------------------------------- /tests/Infrastructure.Tests.Integration/Databases/MovieReviews/MappingConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Infrastructure.Tests.Integration/Databases/MovieReviews/MappingConfigurationTests.cs -------------------------------------------------------------------------------- /tests/Infrastructure.Tests.Integration/Databases/MovieReviews/MovieReviewsCollectionFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Infrastructure.Tests.Integration/Databases/MovieReviews/MovieReviewsCollectionFixture.cs -------------------------------------------------------------------------------- /tests/Infrastructure.Tests.Integration/Databases/MovieReviews/MovieReviewsConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Infrastructure.Tests.Integration/Databases/MovieReviews/MovieReviewsConfigurationTests.cs -------------------------------------------------------------------------------- /tests/Infrastructure.Tests.Integration/Infrastructure.Tests.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Infrastructure.Tests.Integration/Infrastructure.Tests.Integration.csproj -------------------------------------------------------------------------------- /tests/Infrastructure.Tests.Integration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics.CodeAnalysis; 2 | 3 | [assembly: ExcludeFromCodeCoverage] 4 | -------------------------------------------------------------------------------- /tests/Infrastructure.Tests.Integration/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Infrastructure.Tests.Integration/xunit.runner.json -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Authors/AuthorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Authors/AuthorData.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Authors/AuthorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Authors/AuthorTests.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Common/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Common/Data.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Common/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Common/Error.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Common/Execution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Common/Execution.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Common/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Common/Extensions.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Common/GraphData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Common/GraphData.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Common/Parsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Common/Parsing.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Common/Tracing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Common/Tracing.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Movies/MovieData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Movies/MovieData.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Movies/MovieTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Movies/MovieTests.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Reviews/Create/CreateReviewInputData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Reviews/Create/CreateReviewInputData.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Reviews/Delete/DeleteReviewInputData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Reviews/Delete/DeleteReviewInputData.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Reviews/Query/ReviewData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Reviews/Query/ReviewData.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Reviews/ReviewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Reviews/ReviewTests.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQL/Reviews/Update/UpdateReviewInputData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQL/Reviews/Update/UpdateReviewInputData.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/GraphQLApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/GraphQLApplication.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/Presentation.Tests.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/Presentation.Tests.Integration.csproj -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Diagnostics.CodeAnalysis; 2 | 3 | [assembly: ExcludeFromCodeCoverage] 4 | -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/Serializer.cs -------------------------------------------------------------------------------- /tests/Presentation.Tests.Integration/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stphnwlsh/CleanGraphQLApi/HEAD/tests/Presentation.Tests.Integration/xunit.runner.json --------------------------------------------------------------------------------