├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── docs ├── Images │ ├── Icon.png │ └── Scaffolding.gif └── README-NuGet.md └── src ├── .nuke ├── build.schema.json └── parameters.json ├── Directory.Build.props ├── GraphQLinq.Client ├── Client.csproj ├── ExtensionsUtils.cs ├── GraphContext.cs ├── GraphQuery.cs ├── GraphQueryBuilder.cs ├── GraphQueryExecutionException.cs └── GraphQueryExecutor.cs ├── GraphQLinq.Demo ├── Demo.csproj └── Program.cs ├── GraphQLinq.Generated ├── Generated.csproj ├── HSL │ ├── Agency.cs │ ├── Alert.cs │ ├── BikePark.cs │ ├── BikeRentalStation.cs │ ├── BikesAllowed.cs │ ├── CarPark.cs │ ├── Cluster.cs │ ├── Coordinates.cs │ ├── DepartureRow.cs │ ├── FilterPlaceType.cs │ ├── Itinerary.cs │ ├── Leg.cs │ ├── LegGeometry.cs │ ├── LocationType.cs │ ├── Mode.cs │ ├── Node.cs │ ├── OptimizeType.cs │ ├── PageInfo.cs │ ├── Pattern.cs │ ├── PickupDropoffType.cs │ ├── Place.cs │ ├── PlaceInterface.cs │ ├── Plan.cs │ ├── QueryType.cs │ ├── RealtimeState.cs │ ├── Route.cs │ ├── Stop.cs │ ├── Stoptime.cs │ ├── StoptimesInPattern.cs │ ├── TranslatedString.cs │ ├── Trip.cs │ ├── VertexType.cs │ ├── WheelchairBoarding.cs │ ├── debugOutput.cs │ ├── fare.cs │ ├── fareComponent.cs │ ├── placeAtDistance.cs │ ├── placeAtDistanceConnection.cs │ ├── placeAtDistanceEdge.cs │ ├── serviceTimeRange.cs │ ├── stopAtDistance.cs │ ├── stopAtDistanceConnection.cs │ └── stopAtDistanceEdge.cs ├── HslGraphContext.cs ├── SpaceX │ ├── Address.cs │ ├── Capsule.cs │ ├── CapsuleMission.cs │ ├── CapsulesFind.cs │ ├── Conflict_action.cs │ ├── Core.cs │ ├── CoreMission.cs │ ├── CoresFind.cs │ ├── Distance.cs │ ├── Dragon.cs │ ├── DragonHeatShield.cs │ ├── DragonPressurizedCapsule.cs │ ├── DragonThrust.cs │ ├── DragonTrunk.cs │ ├── DragonTrunkCargo.cs │ ├── Force.cs │ ├── HistoriesResult.cs │ ├── History.cs │ ├── HistoryFind.cs │ ├── Info.cs │ ├── InfoLinks.cs │ ├── Landpad.cs │ ├── Launch.cs │ ├── LaunchFind.cs │ ├── LaunchLinks.cs │ ├── LaunchRocket.cs │ ├── LaunchRocketFairings.cs │ ├── LaunchRocketFirstStage.cs │ ├── LaunchRocketFirstStageCore.cs │ ├── LaunchRocketSecondStage.cs │ ├── LaunchSite.cs │ ├── LaunchTelemetry.cs │ ├── LaunchesPastResult.cs │ ├── Launchpad.cs │ ├── Link.cs │ ├── Location.cs │ ├── Mass.cs │ ├── Mission.cs │ ├── MissionResult.cs │ ├── MissionsFind.cs │ ├── Order_by.cs │ ├── Payload.cs │ ├── PayloadOrbitParams.cs │ ├── PayloadsFind.cs │ ├── QueryContext.cs │ ├── QueryExtensions.cs │ ├── Result.cs │ ├── Roadster.cs │ ├── Rocket.cs │ ├── RocketEngines.cs │ ├── RocketFirstStage.cs │ ├── RocketLandingLegs.cs │ ├── RocketPayloadWeight.cs │ ├── RocketSecondStage.cs │ ├── RocketSecondStagePayloadCompositeFairing.cs │ ├── RocketSecondStagePayloads.cs │ ├── RocketsResult.cs │ ├── Ship.cs │ ├── ShipLocation.cs │ ├── ShipMission.cs │ ├── ShipsFind.cs │ ├── ShipsResult.cs │ ├── String_comparison_exp.cs │ ├── Timestamptz_comparison_exp.cs │ ├── Users.cs │ ├── Users_aggregate.cs │ ├── Users_aggregate_fields.cs │ ├── Users_aggregate_order_by.cs │ ├── Users_arr_rel_insert_input.cs │ ├── Users_bool_exp.cs │ ├── Users_constraint.cs │ ├── Users_insert_input.cs │ ├── Users_max_fields.cs │ ├── Users_max_order_by.cs │ ├── Users_min_fields.cs │ ├── Users_min_order_by.cs │ ├── Users_mutation_response.cs │ ├── Users_obj_rel_insert_input.cs │ ├── Users_on_conflict.cs │ ├── Users_order_by.cs │ ├── Users_select_column.cs │ ├── Users_set_input.cs │ ├── Users_update_column.cs │ ├── Uuid_comparison_exp.cs │ └── Volume.cs ├── SuperChargers │ ├── Country.cs │ ├── Email.cs │ ├── Location.cs │ ├── LocationType.cs │ ├── Node.cs │ ├── Phone.cs │ └── Region.cs ├── SuperChargersGraphContext.cs └── TestServer │ ├── QueryContext.cs │ ├── QueryExtensions.cs │ └── User.cs ├── GraphQLinq.Scaffolding ├── ExtensionsUtils.cs ├── GraphQLClassesGenerator.cs ├── Program.cs ├── RootSchemaObject.cs └── Scaffolding.csproj ├── GraphQLinq.TestServer ├── Program.cs ├── Properties │ └── launchSettings.json ├── TestServer.csproj ├── appsettings.Development.json └── appsettings.json ├── GraphQLinq.Tests ├── BasicWorkflowTest.cs ├── CollectionQueryTests.cs ├── Core │ └── TestWithTestServer.cs ├── MethodIncludeQueryGenerationTests.cs ├── QueryGenerationTests.cs ├── SingleItemQueryTests.cs ├── SuperChargersTests.cs └── Tests.csproj ├── GraphQLinq.sln ├── GraphQLinq.sln.DotSettings ├── appveyor.yml ├── build.cmd ├── build.ps1 ├── build.sh └── build ├── .editorconfig ├── Build.cs ├── Configuration.cs ├── _build.csproj └── _build.csproj.DotSettings /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/README.md -------------------------------------------------------------------------------- /docs/Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/docs/Images/Icon.png -------------------------------------------------------------------------------- /docs/Images/Scaffolding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/docs/Images/Scaffolding.gif -------------------------------------------------------------------------------- /docs/README-NuGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/docs/README-NuGet.md -------------------------------------------------------------------------------- /src/.nuke/build.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/.nuke/build.schema.json -------------------------------------------------------------------------------- /src/.nuke/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/.nuke/parameters.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/GraphQLinq.Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Client/Client.csproj -------------------------------------------------------------------------------- /src/GraphQLinq.Client/ExtensionsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Client/ExtensionsUtils.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Client/GraphContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Client/GraphContext.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Client/GraphQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Client/GraphQuery.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Client/GraphQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Client/GraphQueryBuilder.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Client/GraphQueryExecutionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Client/GraphQueryExecutionException.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Client/GraphQueryExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Client/GraphQueryExecutor.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Demo/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Demo/Demo.csproj -------------------------------------------------------------------------------- /src/GraphQLinq.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Demo/Program.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/Generated.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/Generated.csproj -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Agency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Agency.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Alert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Alert.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/BikePark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/BikePark.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/BikeRentalStation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/BikeRentalStation.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/BikesAllowed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/BikesAllowed.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/CarPark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/CarPark.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Cluster.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Coordinates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Coordinates.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/DepartureRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/DepartureRow.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/FilterPlaceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/FilterPlaceType.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Itinerary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Itinerary.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Leg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Leg.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/LegGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/LegGeometry.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/LocationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/LocationType.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Mode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Mode.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Node.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/OptimizeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/OptimizeType.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/PageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/PageInfo.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Pattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Pattern.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/PickupDropoffType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/PickupDropoffType.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Place.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Place.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/PlaceInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/PlaceInterface.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Plan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Plan.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/QueryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/QueryType.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/RealtimeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/RealtimeState.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Route.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Route.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Stop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Stop.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Stoptime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Stoptime.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/StoptimesInPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/StoptimesInPattern.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/TranslatedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/TranslatedString.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/Trip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/Trip.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/VertexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/VertexType.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/WheelchairBoarding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/WheelchairBoarding.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/debugOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/debugOutput.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/fare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/fare.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/fareComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/fareComponent.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/placeAtDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/placeAtDistance.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/placeAtDistanceConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/placeAtDistanceConnection.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/placeAtDistanceEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/placeAtDistanceEdge.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/serviceTimeRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/serviceTimeRange.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/stopAtDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/stopAtDistance.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/stopAtDistanceConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/stopAtDistanceConnection.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HSL/stopAtDistanceEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HSL/stopAtDistanceEdge.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/HslGraphContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/HslGraphContext.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Address.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Capsule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Capsule.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/CapsuleMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/CapsuleMission.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/CapsulesFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/CapsulesFind.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Conflict_action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Conflict_action.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Core.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/CoreMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/CoreMission.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/CoresFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/CoresFind.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Distance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Distance.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Dragon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Dragon.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/DragonHeatShield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/DragonHeatShield.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/DragonPressurizedCapsule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/DragonPressurizedCapsule.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/DragonThrust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/DragonThrust.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/DragonTrunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/DragonTrunk.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/DragonTrunkCargo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/DragonTrunkCargo.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Force.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Force.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/HistoriesResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/HistoriesResult.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/History.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/HistoryFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/HistoryFind.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Info.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/InfoLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/InfoLinks.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Landpad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Landpad.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Launch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Launch.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/LaunchFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/LaunchFind.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/LaunchLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/LaunchLinks.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/LaunchRocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/LaunchRocket.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/LaunchRocketFairings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/LaunchRocketFairings.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/LaunchRocketFirstStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/LaunchRocketFirstStage.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/LaunchRocketFirstStageCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/LaunchRocketFirstStageCore.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/LaunchRocketSecondStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/LaunchRocketSecondStage.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/LaunchSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/LaunchSite.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/LaunchTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/LaunchTelemetry.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/LaunchesPastResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/LaunchesPastResult.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Launchpad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Launchpad.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Link.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Location.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Mass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Mass.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Mission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Mission.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/MissionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/MissionResult.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/MissionsFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/MissionsFind.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Order_by.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Order_by.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Payload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Payload.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/PayloadOrbitParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/PayloadOrbitParams.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/PayloadsFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/PayloadsFind.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/QueryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/QueryContext.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/QueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/QueryExtensions.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Result.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Roadster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Roadster.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Rocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Rocket.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/RocketEngines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/RocketEngines.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/RocketFirstStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/RocketFirstStage.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/RocketLandingLegs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/RocketLandingLegs.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/RocketPayloadWeight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/RocketPayloadWeight.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/RocketSecondStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/RocketSecondStage.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/RocketSecondStagePayloadCompositeFairing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/RocketSecondStagePayloadCompositeFairing.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/RocketSecondStagePayloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/RocketSecondStagePayloads.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/RocketsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/RocketsResult.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Ship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Ship.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/ShipLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/ShipLocation.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/ShipMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/ShipMission.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/ShipsFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/ShipsFind.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/ShipsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/ShipsResult.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/String_comparison_exp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/String_comparison_exp.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Timestamptz_comparison_exp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Timestamptz_comparison_exp.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_aggregate.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_aggregate_fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_aggregate_fields.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_aggregate_order_by.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_aggregate_order_by.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_arr_rel_insert_input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_arr_rel_insert_input.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_bool_exp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_bool_exp.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_constraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_constraint.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_insert_input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_insert_input.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_max_fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_max_fields.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_max_order_by.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_max_order_by.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_min_fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_min_fields.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_min_order_by.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_min_order_by.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_mutation_response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_mutation_response.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_obj_rel_insert_input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_obj_rel_insert_input.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_on_conflict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_on_conflict.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_order_by.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_order_by.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_select_column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_select_column.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_set_input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_set_input.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Users_update_column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Users_update_column.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Uuid_comparison_exp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Uuid_comparison_exp.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SpaceX/Volume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SpaceX/Volume.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SuperChargers/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SuperChargers/Country.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SuperChargers/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SuperChargers/Email.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SuperChargers/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SuperChargers/Location.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SuperChargers/LocationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SuperChargers/LocationType.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SuperChargers/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SuperChargers/Node.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SuperChargers/Phone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SuperChargers/Phone.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SuperChargers/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SuperChargers/Region.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/SuperChargersGraphContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/SuperChargersGraphContext.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/TestServer/QueryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/TestServer/QueryContext.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/TestServer/QueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/TestServer/QueryExtensions.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Generated/TestServer/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Generated/TestServer/User.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Scaffolding/ExtensionsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Scaffolding/ExtensionsUtils.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Scaffolding/GraphQLClassesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Scaffolding/GraphQLClassesGenerator.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Scaffolding/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Scaffolding/Program.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Scaffolding/RootSchemaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Scaffolding/RootSchemaObject.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Scaffolding/Scaffolding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Scaffolding/Scaffolding.csproj -------------------------------------------------------------------------------- /src/GraphQLinq.TestServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.TestServer/Program.cs -------------------------------------------------------------------------------- /src/GraphQLinq.TestServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.TestServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/GraphQLinq.TestServer/TestServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.TestServer/TestServer.csproj -------------------------------------------------------------------------------- /src/GraphQLinq.TestServer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.TestServer/appsettings.Development.json -------------------------------------------------------------------------------- /src/GraphQLinq.TestServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.TestServer/appsettings.json -------------------------------------------------------------------------------- /src/GraphQLinq.Tests/BasicWorkflowTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Tests/BasicWorkflowTest.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Tests/CollectionQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Tests/CollectionQueryTests.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Tests/Core/TestWithTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Tests/Core/TestWithTestServer.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Tests/MethodIncludeQueryGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Tests/MethodIncludeQueryGenerationTests.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Tests/QueryGenerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Tests/QueryGenerationTests.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Tests/SingleItemQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Tests/SingleItemQueryTests.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Tests/SuperChargersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Tests/SuperChargersTests.cs -------------------------------------------------------------------------------- /src/GraphQLinq.Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.Tests/Tests.csproj -------------------------------------------------------------------------------- /src/GraphQLinq.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.sln -------------------------------------------------------------------------------- /src/GraphQLinq.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/GraphQLinq.sln.DotSettings -------------------------------------------------------------------------------- /src/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/appveyor.yml -------------------------------------------------------------------------------- /src/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/build.cmd -------------------------------------------------------------------------------- /src/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/build.ps1 -------------------------------------------------------------------------------- /src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/build.sh -------------------------------------------------------------------------------- /src/build/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/build/.editorconfig -------------------------------------------------------------------------------- /src/build/Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/build/Build.cs -------------------------------------------------------------------------------- /src/build/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/build/Configuration.cs -------------------------------------------------------------------------------- /src/build/_build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/build/_build.csproj -------------------------------------------------------------------------------- /src/build/_build.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/GraphQLinq/HEAD/src/build/_build.csproj.DotSettings --------------------------------------------------------------------------------