├── .gitattributes ├── .gitignore ├── CarvedRock.Api ├── CarvedRock.Api.csproj ├── Data │ ├── CarvedRockDbContext.cs │ ├── Entities │ │ └── Product.cs │ ├── InitialData.cs │ ├── Migrations │ │ ├── 20181108113631_Products.Designer.cs │ │ ├── 20181108113631_Products.cs │ │ └── CarvedRockDbContextModelSnapshot.cs │ └── ProductType.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Repositories │ └── ProductRepository.cs ├── Startup.cs └── appsettings.json └── CarvedRock.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/.gitignore -------------------------------------------------------------------------------- /CarvedRock.Api/CarvedRock.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/CarvedRock.Api.csproj -------------------------------------------------------------------------------- /CarvedRock.Api/Data/CarvedRockDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Data/CarvedRockDbContext.cs -------------------------------------------------------------------------------- /CarvedRock.Api/Data/Entities/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Data/Entities/Product.cs -------------------------------------------------------------------------------- /CarvedRock.Api/Data/InitialData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Data/InitialData.cs -------------------------------------------------------------------------------- /CarvedRock.Api/Data/Migrations/20181108113631_Products.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Data/Migrations/20181108113631_Products.Designer.cs -------------------------------------------------------------------------------- /CarvedRock.Api/Data/Migrations/20181108113631_Products.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Data/Migrations/20181108113631_Products.cs -------------------------------------------------------------------------------- /CarvedRock.Api/Data/Migrations/CarvedRockDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Data/Migrations/CarvedRockDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /CarvedRock.Api/Data/ProductType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Data/ProductType.cs -------------------------------------------------------------------------------- /CarvedRock.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Program.cs -------------------------------------------------------------------------------- /CarvedRock.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /CarvedRock.Api/Repositories/ProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Repositories/ProductRepository.cs -------------------------------------------------------------------------------- /CarvedRock.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/Startup.cs -------------------------------------------------------------------------------- /CarvedRock.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.Api/appsettings.json -------------------------------------------------------------------------------- /CarvedRock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandGuijt/PluralsightGraphQL/HEAD/CarvedRock.sln --------------------------------------------------------------------------------