├── .gitignore ├── Graphity.sln ├── Graphity.sln.DotSettings ├── LICENCE.md ├── README.md ├── create-nuget.cmd ├── sample ├── AspNetWebApi │ ├── AspNetWebApi.csproj │ ├── AuthorisationPolicies │ │ └── HasAdminRoleAuthorisationPolicy.cs │ ├── Controllers │ │ └── TestController.cs │ ├── Data │ │ ├── Animal.cs │ │ ├── AnimalContext.cs │ │ ├── AnimalType.cs │ │ ├── Country.cs │ │ └── CountryProperties.cs │ ├── Migrations │ │ ├── 20181215163958_CreateTables.Designer.cs │ │ ├── 20181215163958_CreateTables.cs │ │ └── AnimalContextModelSnapshot.cs │ ├── Program.cs │ ├── Startup.cs │ ├── Views │ │ └── Test │ │ │ ├── Countries.cshtml │ │ │ └── Index.cshtml │ ├── appsettings.Development.json │ └── appsettings.json ├── FullConfiguration │ ├── FullConfiguration.csproj │ ├── Program.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── MvcWithAuthorisation │ ├── Areas │ │ └── Identity │ │ │ └── Pages │ │ │ └── _ViewStart.cshtml │ ├── Controllers │ │ └── HomeController.cs │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ ├── DataSeeder.cs │ │ └── Migrations │ │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── Models │ │ └── ErrorViewModel.cs │ ├── MvcWithAuthorisation.csproj │ ├── Program.cs │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── app.db │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── Sample.Data │ ├── AnimalContext.cs │ ├── Entities │ │ ├── Animal.cs │ │ ├── AnimalType.cs │ │ ├── Country.cs │ │ └── CountryProperties.cs │ ├── Sample.Data.csproj │ └── ServiceCollectionExtensions.cs ├── Samples.sln ├── Samples.sln.DotSettings └── ZeroConfiguration │ ├── Program.cs │ ├── Startup.cs │ ├── ZeroConfiguration.csproj │ ├── appsettings.Development.json │ └── appsettings.json ├── src └── Graphity │ ├── Authorisation │ ├── AuthorisationResult.cs │ ├── FuncAuthorisationPolicy.cs │ ├── FuncAuthorisationRequirement.cs │ ├── GraphQLSettings.cs │ ├── GraphQLUserContext.cs │ └── HasClaimAuthorisationPolicy.cs │ ├── DynamicObjectGraphType.cs │ ├── DynamicQuery.cs │ ├── DynamicSchema.cs │ ├── Expressions │ ├── ComparisonExpressions.cs │ └── ExpressionExtensions.cs │ ├── GraphQLQuery.cs │ ├── Graphity.csproj │ ├── Graphity.xml │ ├── GraphityException.cs │ ├── IScopedDependencyResolver.cs │ ├── Middleware │ ├── GraphityMiddleware.cs │ └── GraphityMiddlewareExtensions.cs │ ├── Options │ ├── DbSetConfiguration.cs │ ├── DbSetConfigurationQueryOptions.cs │ ├── IDbSetConfiguration.cs │ ├── IDbSetConfigurationQueryOptions.cs │ ├── IPropertyConfiguration.cs │ ├── IPropertyConfigurationQueryOptions.cs │ ├── IQueryOptions.cs │ ├── PropertyConfiguration.cs │ ├── PropertyConfigurationQueryOptions.cs │ ├── QueryOptions.cs │ └── QueryOptionsExtensions.cs │ ├── Ordering │ ├── OrderByDirection.cs │ ├── OrderByDirectionType.cs │ ├── OrderByExpression.cs │ └── OrderByExpressionType.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── GlobalUsings.cs │ ├── ScopedFuncDependencyResolver.cs │ ├── ServiceCollectionExtensions.cs │ ├── SetOption.cs │ └── Where │ ├── Comparison.cs │ ├── ComparisonType.cs │ ├── WhereExpression.cs │ └── WhereExpressionType.cs └── test └── Graphity.Tests ├── ComparisonExpressions ├── BoolTests.cs ├── DecimalTests.cs ├── IntTests.cs └── StringTests.cs ├── Fixtures ├── BasicStartup.cs ├── ComparisonExpressionsFixture.cs ├── ComplexStartup.cs ├── ContextFixture.cs ├── CustomWebApplicationFactory.cs ├── Data │ ├── Animal.cs │ ├── AnimalType.cs │ ├── AnimalsByCountry.cs │ ├── Country.cs │ ├── CountryProperties.cs │ └── TestContext.cs ├── GraphError.cs └── GraphExecutionResult.cs ├── Graphity.Tests.csproj └── Middleware ├── BasicMiddlewareTests.cs └── ComplexMiddlewareTests.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/.gitignore -------------------------------------------------------------------------------- /Graphity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/Graphity.sln -------------------------------------------------------------------------------- /Graphity.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/Graphity.sln.DotSettings -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/README.md -------------------------------------------------------------------------------- /create-nuget.cmd: -------------------------------------------------------------------------------- 1 | dotnet pack -c Release -o ..\..\artifacts 2 | -------------------------------------------------------------------------------- /sample/AspNetWebApi/AspNetWebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/AspNetWebApi.csproj -------------------------------------------------------------------------------- /sample/AspNetWebApi/AuthorisationPolicies/HasAdminRoleAuthorisationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/AuthorisationPolicies/HasAdminRoleAuthorisationPolicy.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Controllers/TestController.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Data/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Data/Animal.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Data/AnimalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Data/AnimalContext.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Data/AnimalType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Data/AnimalType.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Data/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Data/Country.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Data/CountryProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Data/CountryProperties.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Migrations/20181215163958_CreateTables.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Migrations/20181215163958_CreateTables.Designer.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Migrations/20181215163958_CreateTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Migrations/20181215163958_CreateTables.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Migrations/AnimalContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Migrations/AnimalContextModelSnapshot.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Program.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Startup.cs -------------------------------------------------------------------------------- /sample/AspNetWebApi/Views/Test/Countries.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Views/Test/Countries.cshtml -------------------------------------------------------------------------------- /sample/AspNetWebApi/Views/Test/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/Views/Test/Index.cshtml -------------------------------------------------------------------------------- /sample/AspNetWebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/appsettings.Development.json -------------------------------------------------------------------------------- /sample/AspNetWebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/AspNetWebApi/appsettings.json -------------------------------------------------------------------------------- /sample/FullConfiguration/FullConfiguration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/FullConfiguration/FullConfiguration.csproj -------------------------------------------------------------------------------- /sample/FullConfiguration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/FullConfiguration/Program.cs -------------------------------------------------------------------------------- /sample/FullConfiguration/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/FullConfiguration/Startup.cs -------------------------------------------------------------------------------- /sample/FullConfiguration/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/FullConfiguration/appsettings.Development.json -------------------------------------------------------------------------------- /sample/FullConfiguration/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/FullConfiguration/appsettings.json -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Controllers/HomeController.cs -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Data/DataSeeder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Data/DataSeeder.cs -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/MvcWithAuthorisation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/MvcWithAuthorisation.csproj -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Program.cs -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Startup.cs -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/app.db -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/appsettings.Development.json -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/appsettings.json -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/css/site.css -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/favicon.ico -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/js/site.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /sample/MvcWithAuthorisation/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/MvcWithAuthorisation/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /sample/Sample.Data/AnimalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/Sample.Data/AnimalContext.cs -------------------------------------------------------------------------------- /sample/Sample.Data/Entities/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/Sample.Data/Entities/Animal.cs -------------------------------------------------------------------------------- /sample/Sample.Data/Entities/AnimalType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/Sample.Data/Entities/AnimalType.cs -------------------------------------------------------------------------------- /sample/Sample.Data/Entities/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/Sample.Data/Entities/Country.cs -------------------------------------------------------------------------------- /sample/Sample.Data/Entities/CountryProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/Sample.Data/Entities/CountryProperties.cs -------------------------------------------------------------------------------- /sample/Sample.Data/Sample.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/Sample.Data/Sample.Data.csproj -------------------------------------------------------------------------------- /sample/Sample.Data/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/Sample.Data/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /sample/Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/Samples.sln -------------------------------------------------------------------------------- /sample/Samples.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/Samples.sln.DotSettings -------------------------------------------------------------------------------- /sample/ZeroConfiguration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/ZeroConfiguration/Program.cs -------------------------------------------------------------------------------- /sample/ZeroConfiguration/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/ZeroConfiguration/Startup.cs -------------------------------------------------------------------------------- /sample/ZeroConfiguration/ZeroConfiguration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/ZeroConfiguration/ZeroConfiguration.csproj -------------------------------------------------------------------------------- /sample/ZeroConfiguration/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/ZeroConfiguration/appsettings.Development.json -------------------------------------------------------------------------------- /sample/ZeroConfiguration/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/sample/ZeroConfiguration/appsettings.json -------------------------------------------------------------------------------- /src/Graphity/Authorisation/AuthorisationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Authorisation/AuthorisationResult.cs -------------------------------------------------------------------------------- /src/Graphity/Authorisation/FuncAuthorisationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Authorisation/FuncAuthorisationPolicy.cs -------------------------------------------------------------------------------- /src/Graphity/Authorisation/FuncAuthorisationRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Authorisation/FuncAuthorisationRequirement.cs -------------------------------------------------------------------------------- /src/Graphity/Authorisation/GraphQLSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Authorisation/GraphQLSettings.cs -------------------------------------------------------------------------------- /src/Graphity/Authorisation/GraphQLUserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Authorisation/GraphQLUserContext.cs -------------------------------------------------------------------------------- /src/Graphity/Authorisation/HasClaimAuthorisationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Authorisation/HasClaimAuthorisationPolicy.cs -------------------------------------------------------------------------------- /src/Graphity/DynamicObjectGraphType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/DynamicObjectGraphType.cs -------------------------------------------------------------------------------- /src/Graphity/DynamicQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/DynamicQuery.cs -------------------------------------------------------------------------------- /src/Graphity/DynamicSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/DynamicSchema.cs -------------------------------------------------------------------------------- /src/Graphity/Expressions/ComparisonExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Expressions/ComparisonExpressions.cs -------------------------------------------------------------------------------- /src/Graphity/Expressions/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Expressions/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/Graphity/GraphQLQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/GraphQLQuery.cs -------------------------------------------------------------------------------- /src/Graphity/Graphity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Graphity.csproj -------------------------------------------------------------------------------- /src/Graphity/Graphity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Graphity.xml -------------------------------------------------------------------------------- /src/Graphity/GraphityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/GraphityException.cs -------------------------------------------------------------------------------- /src/Graphity/IScopedDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/IScopedDependencyResolver.cs -------------------------------------------------------------------------------- /src/Graphity/Middleware/GraphityMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Middleware/GraphityMiddleware.cs -------------------------------------------------------------------------------- /src/Graphity/Middleware/GraphityMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Middleware/GraphityMiddlewareExtensions.cs -------------------------------------------------------------------------------- /src/Graphity/Options/DbSetConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/DbSetConfiguration.cs -------------------------------------------------------------------------------- /src/Graphity/Options/DbSetConfigurationQueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/DbSetConfigurationQueryOptions.cs -------------------------------------------------------------------------------- /src/Graphity/Options/IDbSetConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/IDbSetConfiguration.cs -------------------------------------------------------------------------------- /src/Graphity/Options/IDbSetConfigurationQueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/IDbSetConfigurationQueryOptions.cs -------------------------------------------------------------------------------- /src/Graphity/Options/IPropertyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/IPropertyConfiguration.cs -------------------------------------------------------------------------------- /src/Graphity/Options/IPropertyConfigurationQueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/IPropertyConfigurationQueryOptions.cs -------------------------------------------------------------------------------- /src/Graphity/Options/IQueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/IQueryOptions.cs -------------------------------------------------------------------------------- /src/Graphity/Options/PropertyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/PropertyConfiguration.cs -------------------------------------------------------------------------------- /src/Graphity/Options/PropertyConfigurationQueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/PropertyConfigurationQueryOptions.cs -------------------------------------------------------------------------------- /src/Graphity/Options/QueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/QueryOptions.cs -------------------------------------------------------------------------------- /src/Graphity/Options/QueryOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Options/QueryOptionsExtensions.cs -------------------------------------------------------------------------------- /src/Graphity/Ordering/OrderByDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Ordering/OrderByDirection.cs -------------------------------------------------------------------------------- /src/Graphity/Ordering/OrderByDirectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Ordering/OrderByDirectionType.cs -------------------------------------------------------------------------------- /src/Graphity/Ordering/OrderByExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Ordering/OrderByExpression.cs -------------------------------------------------------------------------------- /src/Graphity/Ordering/OrderByExpressionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Ordering/OrderByExpressionType.cs -------------------------------------------------------------------------------- /src/Graphity/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Graphity.Tests")] -------------------------------------------------------------------------------- /src/Graphity/Properties/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Properties/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Graphity/ScopedFuncDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/ScopedFuncDependencyResolver.cs -------------------------------------------------------------------------------- /src/Graphity/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Graphity/SetOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/SetOption.cs -------------------------------------------------------------------------------- /src/Graphity/Where/Comparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Where/Comparison.cs -------------------------------------------------------------------------------- /src/Graphity/Where/ComparisonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Where/ComparisonType.cs -------------------------------------------------------------------------------- /src/Graphity/Where/WhereExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Where/WhereExpression.cs -------------------------------------------------------------------------------- /src/Graphity/Where/WhereExpressionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/src/Graphity/Where/WhereExpressionType.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/ComparisonExpressions/BoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/ComparisonExpressions/BoolTests.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/ComparisonExpressions/DecimalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/ComparisonExpressions/DecimalTests.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/ComparisonExpressions/IntTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/ComparisonExpressions/IntTests.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/ComparisonExpressions/StringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/ComparisonExpressions/StringTests.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/BasicStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/BasicStartup.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/ComparisonExpressionsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/ComparisonExpressionsFixture.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/ComplexStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/ComplexStartup.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/ContextFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/ContextFixture.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/CustomWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/CustomWebApplicationFactory.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/Data/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/Data/Animal.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/Data/AnimalType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/Data/AnimalType.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/Data/AnimalsByCountry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/Data/AnimalsByCountry.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/Data/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/Data/Country.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/Data/CountryProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/Data/CountryProperties.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/Data/TestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/Data/TestContext.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/GraphError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/GraphError.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Fixtures/GraphExecutionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Fixtures/GraphExecutionResult.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Graphity.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Graphity.Tests.csproj -------------------------------------------------------------------------------- /test/Graphity.Tests/Middleware/BasicMiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Middleware/BasicMiddlewareTests.cs -------------------------------------------------------------------------------- /test/Graphity.Tests/Middleware/ComplexMiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiredUK/Graphity/HEAD/test/Graphity.Tests/Middleware/ComplexMiddlewareTests.cs --------------------------------------------------------------------------------