Vizgql.Core 0.0.8

dotnet add package Vizgql.Core --version 0.0.8
NuGet\Install-Package Vizgql.Core -Version 0.0.8
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Vizgql.Core" Version="0.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Vizgql.Core --version 0.0.8
#r "nuget: Vizgql.Core, 0.0.8"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Vizgql.Core as a Cake Addin
#addin nuget:?package=Vizgql.Core&version=0.0.8

// Install Vizgql.Core as a Cake Tool
#tool nuget:?package=Vizgql.Core&version=0.0.8

Vizgql.Console

Vizgql.Console is a command-line interface tool designed for parsing GraphQL SDL documents. It provides an overview of fields and their associated authorization directives, along with listing different roles/policies the directives may have.

Features

  • Parse GraphQL SDL documents from a file or URL.
  • Display fields with authorization directives.
  • List roles and policies linked to the authorization directives.
  • Highlight validation errors and unique constraints in the schema.

Installation

dotnet tool install Vizgql.Console --global

Usage

To use Vizgql.Console, execute the following commands with the appropriate options:

vizgql -f [path_to_file]
vizgql -u [URL]

Options

  • -f, --file: Path to the file to be parsed.
  • -u, --url: URL from which text will be downloaded for parsing.
  • -n, --header-name: HTTP header name for authentication (Default: Authorization).
  • -t, --header-token: HTTP header token for authentication.
  • -p, --policies: Comma-separated list of policies to apply to the schema.
  • -r, --roles: Comma-separated list of roles to apply to the schema.
  • --validations: Print out any validation errors (Default: false).
  • --unique-constraints: Prints all the unique constraints as a comma-separated list.
  • --format: Ansi, Html, Csv
  • --help: Display help screen.
  • --version: Display version information.

Example

PS C:\Users\User> vizgql -u https://hotchocolateschema.com/graphql?sdl --validations --unique-constraints

Output when downloading sdl from a URL. Using the validations and unique-constraints option.

Formats

You can output in several formats

Ansi

Default format, for cli usage. Supports validations, unique-constraints, roles and policy filter.

Html

Outputs HTML. Supports validations and unique-constraints.

Csv

Outputs CSV, only list the fields and constraints.

In unit tests.

dotnet add package Vizgql.Core

[Test]

    private readonly ValidationAssertion[] _allowedAssertions =
    [
        new("Mutation", MissingAuthorizationConstraints),
        new("Query", MissingAuthorizationConstraints),
        new("Subscription.priceChange", MissingFieldAuthorization)
    ];
    
    public async Task SchemaChangedAsync()
    {
        var schema = await GraphQLTestService.GetSchema();
        var schemaType = SchemaParser.Parse(schema.ToString());

        var validations = schemaType.Validate().ToArray();

        foreach (var validation in validations)
        {
            Assert.That(_allowedAssertions, Does.Contain(validation));
        }

        Assert.That(validations, Has.Length.EqualTo(_allowedAssertions.Length));
    }

Above is a example setup for unit test for C#. GraphQLTestService is setup for the HotChocolate GraphQL API. GetSchema returns the ISchema for the API. We can get validations from the parsed SchemaType with the Validations() method. You can assert that it should be empty, or make exceptions for known assertions like in the example above. Not all validation errors are necessary to fix for a secure schema, as authorizations are inherited.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Vizgql.Core:

Package Downloads
Vizgql.ReportBuilder.Html

The goal of this project is to have a tool for vizualizing and testing authorization for GraphQL schemas. It is not always clear and easy to vizualize how authorization constraints (roles/policies) are applied fields. This projects aims to give you tools to automatically test this, and genrate vizualisations.

Vizgql.ReportBuilder

The goal of this project is to have a tool for vizualizing and testing authorization for GraphQL schemas. It is not always clear and easy to vizualize how authorization constraints (roles/policies) are applied fields. This projects aims to give you tools to automatically test this, and genrate vizualisations.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.8 95 4/25/2024
0.0.7 653 1/12/2024
0.0.6 96 1/9/2024
0.0.5 531 11/10/2023
0.0.3 125 10/10/2023
0.0.2 129 9/19/2023
0.0.1 99 9/16/2023

upgrading dependecies