├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── CommanderGQL.csproj ├── Data └── AppDbContext.cs ├── GraphQL ├── Commands │ ├── AddCommandInput.cs │ ├── AddCommandInputType.cs │ ├── AddCommandPayload.cs │ ├── AddCommandPayloadType.cs │ └── CommandType.cs ├── Mutation.cs ├── Platforms │ ├── AddPlatformInput.cs │ ├── AddPlatformInputType.cs │ ├── AddPlatformPayload.cs │ ├── AddPlatformPayloadType.cs │ └── PlatformType.cs ├── Query.cs └── Subscription.cs ├── Migrations ├── 20210120093548_AddPlatformToDb.Designer.cs ├── 20210120093548_AddPlatformToDb.cs ├── 20210123051644_AddCommandToDB.Designer.cs ├── 20210123051644_AddCommandToDB.cs └── AppDbContextModelSnapshot.cs ├── Models ├── Command.cs └── Platform.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── catalog-info.yaml └── docker-compose.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CommanderGQL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/CommanderGQL.csproj -------------------------------------------------------------------------------- /Data/AppDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Data/AppDbContext.cs -------------------------------------------------------------------------------- /GraphQL/Commands/AddCommandInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Commands/AddCommandInput.cs -------------------------------------------------------------------------------- /GraphQL/Commands/AddCommandInputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Commands/AddCommandInputType.cs -------------------------------------------------------------------------------- /GraphQL/Commands/AddCommandPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Commands/AddCommandPayload.cs -------------------------------------------------------------------------------- /GraphQL/Commands/AddCommandPayloadType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Commands/AddCommandPayloadType.cs -------------------------------------------------------------------------------- /GraphQL/Commands/CommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Commands/CommandType.cs -------------------------------------------------------------------------------- /GraphQL/Mutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Mutation.cs -------------------------------------------------------------------------------- /GraphQL/Platforms/AddPlatformInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Platforms/AddPlatformInput.cs -------------------------------------------------------------------------------- /GraphQL/Platforms/AddPlatformInputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Platforms/AddPlatformInputType.cs -------------------------------------------------------------------------------- /GraphQL/Platforms/AddPlatformPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Platforms/AddPlatformPayload.cs -------------------------------------------------------------------------------- /GraphQL/Platforms/AddPlatformPayloadType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Platforms/AddPlatformPayloadType.cs -------------------------------------------------------------------------------- /GraphQL/Platforms/PlatformType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Platforms/PlatformType.cs -------------------------------------------------------------------------------- /GraphQL/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Query.cs -------------------------------------------------------------------------------- /GraphQL/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/GraphQL/Subscription.cs -------------------------------------------------------------------------------- /Migrations/20210120093548_AddPlatformToDb.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Migrations/20210120093548_AddPlatformToDb.Designer.cs -------------------------------------------------------------------------------- /Migrations/20210120093548_AddPlatformToDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Migrations/20210120093548_AddPlatformToDb.cs -------------------------------------------------------------------------------- /Migrations/20210123051644_AddCommandToDB.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Migrations/20210123051644_AddCommandToDB.Designer.cs -------------------------------------------------------------------------------- /Migrations/20210123051644_AddCommandToDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Migrations/20210123051644_AddCommandToDB.cs -------------------------------------------------------------------------------- /Migrations/AppDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Migrations/AppDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Models/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Models/Command.cs -------------------------------------------------------------------------------- /Models/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Models/Platform.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/Startup.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/appsettings.json -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarythistle/S04E01---.NET-5-GraphQL-API/HEAD/docker-compose.yaml --------------------------------------------------------------------------------