├── .gitignore ├── GraphEntities ├── GraphEntities.csproj ├── GraphQLQuery.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── HobbyAPI.sln ├── HobbyAPI ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ ├── Startup.Auth.cs │ └── WebApiConfig.cs ├── Areas │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs │ │ ├── App_Start │ │ └── HelpPageConfig.cs │ │ ├── Controllers │ │ └── HelpController.cs │ │ ├── HelpPage.css │ │ ├── HelpPageAreaRegistration.cs │ │ ├── HelpPageConfigurationExtensions.cs │ │ ├── ModelDescriptions │ │ ├── CollectionModelDescription.cs │ │ ├── ComplexTypeModelDescription.cs │ │ ├── DictionaryModelDescription.cs │ │ ├── EnumTypeModelDescription.cs │ │ ├── EnumValueDescription.cs │ │ ├── IModelDocumentationProvider.cs │ │ ├── KeyValuePairModelDescription.cs │ │ ├── ModelDescription.cs │ │ ├── ModelDescriptionGenerator.cs │ │ ├── ModelNameAttribute.cs │ │ ├── ModelNameHelper.cs │ │ ├── ParameterAnnotation.cs │ │ ├── ParameterDescription.cs │ │ └── SimpleTypeModelDescription.cs │ │ ├── Models │ │ └── HelpPageApiModel.cs │ │ ├── SampleGeneration │ │ ├── HelpPageSampleGenerator.cs │ │ ├── HelpPageSampleKey.cs │ │ ├── ImageSample.cs │ │ ├── InvalidSample.cs │ │ ├── ObjectGenerator.cs │ │ ├── SampleDirection.cs │ │ └── TextSample.cs │ │ ├── Views │ │ ├── Help │ │ │ ├── Api.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ │ ├── Parameters.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ └── TextSample.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ResourceModel.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ └── XmlDocumentationProvider.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Controllers │ ├── AccountController.cs │ ├── GraphQLController.cs │ ├── HomeController.cs │ └── ValuesController.cs ├── Global.asax ├── Global.asax.cs ├── HobbyAPI.csproj ├── Models │ ├── AccountBindingModels.cs │ ├── AccountViewModels.cs │ └── IdentityModels.cs ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── Providers │ └── ApplicationOAuthProvider.cs ├── Results │ └── ChallengeResult.cs ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Startup.cs ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config ├── HobbyBusinessLayer ├── GraphQLEntities │ ├── GraphQLQuery.cs │ ├── HobbyInputType.cs │ ├── HobbyMutation.cs │ ├── HobbyQuery.cs │ ├── HobbyQuerySchema.cs │ ├── HobbyType.cs │ └── PersonType.cs ├── HobbyBusinessLayer.csproj ├── Properties │ └── AssemblyInfo.cs ├── QueryResolver.cs ├── app.config └── packages.config ├── HobbyDataLayer ├── App.config ├── Class1.cs ├── DBManager.cs ├── HobbyDataLayer.csproj ├── Migrations │ ├── 201807040615502_InitialClasses.Designer.cs │ ├── 201807040615502_InitialClasses.cs │ ├── 201807040615502_InitialClasses.resx │ └── Configuration.cs ├── Models │ ├── DatabaseInitializer.cs │ ├── Hobby.cs │ ├── HobbyDBContext.cs │ └── Person.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /GraphEntities/GraphEntities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/GraphEntities/GraphEntities.csproj -------------------------------------------------------------------------------- /GraphEntities/GraphQLQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/GraphEntities/GraphQLQuery.cs -------------------------------------------------------------------------------- /GraphEntities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/GraphEntities/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GraphEntities/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/GraphEntities/packages.config -------------------------------------------------------------------------------- /HobbyAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI.sln -------------------------------------------------------------------------------- /HobbyAPI/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /HobbyAPI/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /HobbyAPI/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /HobbyAPI/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /HobbyAPI/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /HobbyAPI/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /HobbyAPI/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Content/Site.css -------------------------------------------------------------------------------- /HobbyAPI/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Content/bootstrap.css -------------------------------------------------------------------------------- /HobbyAPI/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Content/bootstrap.min.css -------------------------------------------------------------------------------- /HobbyAPI/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Controllers/AccountController.cs -------------------------------------------------------------------------------- /HobbyAPI/Controllers/GraphQLController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Controllers/GraphQLController.cs -------------------------------------------------------------------------------- /HobbyAPI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Controllers/HomeController.cs -------------------------------------------------------------------------------- /HobbyAPI/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /HobbyAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Global.asax -------------------------------------------------------------------------------- /HobbyAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Global.asax.cs -------------------------------------------------------------------------------- /HobbyAPI/HobbyAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/HobbyAPI.csproj -------------------------------------------------------------------------------- /HobbyAPI/Models/AccountBindingModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Models/AccountBindingModels.cs -------------------------------------------------------------------------------- /HobbyAPI/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /HobbyAPI/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Models/IdentityModels.cs -------------------------------------------------------------------------------- /HobbyAPI/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Project_Readme.html -------------------------------------------------------------------------------- /HobbyAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HobbyAPI/Providers/ApplicationOAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Providers/ApplicationOAuthProvider.cs -------------------------------------------------------------------------------- /HobbyAPI/Results/ChallengeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Results/ChallengeResult.cs -------------------------------------------------------------------------------- /HobbyAPI/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/_references.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/bootstrap.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /HobbyAPI/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/respond.js -------------------------------------------------------------------------------- /HobbyAPI/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Scripts/respond.min.js -------------------------------------------------------------------------------- /HobbyAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Startup.cs -------------------------------------------------------------------------------- /HobbyAPI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Views/Web.config -------------------------------------------------------------------------------- /HobbyAPI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /HobbyAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Web.Debug.config -------------------------------------------------------------------------------- /HobbyAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Web.Release.config -------------------------------------------------------------------------------- /HobbyAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/Web.config -------------------------------------------------------------------------------- /HobbyAPI/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/favicon.ico -------------------------------------------------------------------------------- /HobbyAPI/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /HobbyAPI/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /HobbyAPI/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /HobbyAPI/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /HobbyAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyAPI/packages.config -------------------------------------------------------------------------------- /HobbyBusinessLayer/GraphQLEntities/GraphQLQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/GraphQLEntities/GraphQLQuery.cs -------------------------------------------------------------------------------- /HobbyBusinessLayer/GraphQLEntities/HobbyInputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/GraphQLEntities/HobbyInputType.cs -------------------------------------------------------------------------------- /HobbyBusinessLayer/GraphQLEntities/HobbyMutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/GraphQLEntities/HobbyMutation.cs -------------------------------------------------------------------------------- /HobbyBusinessLayer/GraphQLEntities/HobbyQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/GraphQLEntities/HobbyQuery.cs -------------------------------------------------------------------------------- /HobbyBusinessLayer/GraphQLEntities/HobbyQuerySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/GraphQLEntities/HobbyQuerySchema.cs -------------------------------------------------------------------------------- /HobbyBusinessLayer/GraphQLEntities/HobbyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/GraphQLEntities/HobbyType.cs -------------------------------------------------------------------------------- /HobbyBusinessLayer/GraphQLEntities/PersonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/GraphQLEntities/PersonType.cs -------------------------------------------------------------------------------- /HobbyBusinessLayer/HobbyBusinessLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/HobbyBusinessLayer.csproj -------------------------------------------------------------------------------- /HobbyBusinessLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HobbyBusinessLayer/QueryResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/QueryResolver.cs -------------------------------------------------------------------------------- /HobbyBusinessLayer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/app.config -------------------------------------------------------------------------------- /HobbyBusinessLayer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyBusinessLayer/packages.config -------------------------------------------------------------------------------- /HobbyDataLayer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/App.config -------------------------------------------------------------------------------- /HobbyDataLayer/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/Class1.cs -------------------------------------------------------------------------------- /HobbyDataLayer/DBManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/DBManager.cs -------------------------------------------------------------------------------- /HobbyDataLayer/HobbyDataLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/HobbyDataLayer.csproj -------------------------------------------------------------------------------- /HobbyDataLayer/Migrations/201807040615502_InitialClasses.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/Migrations/201807040615502_InitialClasses.Designer.cs -------------------------------------------------------------------------------- /HobbyDataLayer/Migrations/201807040615502_InitialClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/Migrations/201807040615502_InitialClasses.cs -------------------------------------------------------------------------------- /HobbyDataLayer/Migrations/201807040615502_InitialClasses.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/Migrations/201807040615502_InitialClasses.resx -------------------------------------------------------------------------------- /HobbyDataLayer/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/Migrations/Configuration.cs -------------------------------------------------------------------------------- /HobbyDataLayer/Models/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/Models/DatabaseInitializer.cs -------------------------------------------------------------------------------- /HobbyDataLayer/Models/Hobby.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/Models/Hobby.cs -------------------------------------------------------------------------------- /HobbyDataLayer/Models/HobbyDBContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/Models/HobbyDBContext.cs -------------------------------------------------------------------------------- /HobbyDataLayer/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/Models/Person.cs -------------------------------------------------------------------------------- /HobbyDataLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HobbyDataLayer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/HobbyDataLayer/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulee/GraphQLHobbyAPI/HEAD/README.md --------------------------------------------------------------------------------