DotJEM.StructureQL 1.0.25

This package has a SemVer 2.0.0 package version: 1.0.25+sha.a6302381.
dotnet add package DotJEM.StructureQL --version 1.0.25
NuGet\Install-Package DotJEM.StructureQL -Version 1.0.25
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="DotJEM.StructureQL" Version="1.0.25" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotJEM.StructureQL --version 1.0.25
#r "nuget: DotJEM.StructureQL, 1.0.25"
#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 DotJEM.StructureQL as a Cake Addin
#addin nuget:?package=DotJEM.StructureQL&version=1.0.25

// Install DotJEM.StructureQL as a Cake Tool
#tool nuget:?package=DotJEM.StructureQL&version=1.0.25

StructureQL

Structure QL, not to be confused with Structured Query Language (SQL) (Could not come up with a better name for now). Is a small frame work targeted at enabling REST/HTTP framworks to ease implementation of partial returns based on structured data, currently aimed specifically at JSON.

Examples

Given the following JSON:

{
    "id": "GPL-2.0",
    "identifiers": [
      {
        "identifier": "GPL-2.0",
        "scheme": "DEP5"
      },
      {
        "identifier": "GPL-2.0",
        "scheme": "SPDX"
      },
      {
        "identifier": "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
        "scheme": "Trove"
      }
    ],
    "links": [
      {
        "note": "tl;dr legal",
        "url": "https://tldrlegal.com/license/gnu-general-public-license-v2"
      },
      {
        "note": "Wikipedia page",
        "url": "https://en.wikipedia.org/wiki/GNU_General_Public_License"
      },
      {
        "note": "OSI Page",
        "url": "https://opensource.org/licenses/GPL-2.0"
      }
    ],
    "name": "GNU General Public License, Version 2.0",
    "other_names": [],
    "superseded_by": "GPL-3.0",
    "keywords": [
      "osi-approved",
      "popular",
      "copyleft"
    ],
    "text": [
      {
        "media_type": "text/plain",
        "title": "Plain Text",
        "url": "https://www.gnu.org/licenses/gpl-2.0.txt"
      },
      {
        "media_type": "text/html",
        "title": "HTML",
        "url": "https://www.gnu.org/licenses/gpl-2.0-standalone.html"
      }
    ]
}

Using DotJEM.StructureQL.Json, we can query into the document with the following queries:

**Return the entire document: **
** or {**}


Return only top level primitive fields:
* or {*}

Code

JObject result = json.Query("*");

Result:

{
    "id": "GPL-2.0",
    "name": "GNU General Public License, Version 2.0",
    "superseded_by": "GPL-3.0"
}

Return specific named properties:
{id,name}

Code

JObject result = json.Query("{id,name}");

Result:

{
    "id": "GPL-2.0",
    "name": "GNU General Public License, Version 2.0"
}

Return id, name and all identifiers:
{id,name,identifiers:*}, {id,name,identifiers:**}, {id,name,identifiers:{*}} or {id,name,identifiers:{**}}
Because each of the identifier objects only has top level promitives, both * and ** works the same here, if there was nested properties and we wanted the full identifier objects we either need to use **/{**} or query specifically for properties and child properties of the object.

Code

JObject result = json.Query("{id,name,identifiers:*}");

Result:

{
    "id": "GPL-2.0",
    "name": "GNU General Public License, Version 2.0",
    "identifiers": [
      {
        "identifier": "GPL-2.0",
        "scheme": "DEP5"
      },
      {
        "identifier": "GPL-2.0",
        "scheme": "SPDX"
      },
      {
        "identifier": "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
        "scheme": "Trove"
      }
    ]
}

Return id, name and a range of identifiers:
{id,name,identifiers:[0..1]*}, {id,name,identifiers:[0..1]**}, {id,name,identifiers:[0..1]{*}} or {id,name,identifiers:[0..1]{**}}
If we know a property is an array, we can add [<from>..<to>] in front of the query on that object to select only a number of items in the array. Both from and to are optional, where [1..] selects elements from index 1 and up, [..1] selects element 0 and 1 and [..] means all and is redundant to just leaving it out.

Code

JObject result = json.Query("{id,name,identifiers:[0..1]*}");

Result:

{
    "id": "GPL-2.0",
    "name": "GNU General Public License, Version 2.0",
    "identifiers": [
      {
        "identifier": "GPL-2.0",
        "scheme": "DEP5"
      },
      {
        "identifier": "GPL-2.0",
        "scheme": "SPDX"
      }
    ]
}

Return id, name and links with only the url property
{id,name,links:{url} }

Code

JObject result = json.Query("{id,name,links:{url} }");

Result:

{
    "id": "GPL-2.0",
    "name": "GNU General Public License, Version 2.0",
    "links": [
      {
        "url": "https://tldrlegal.com/license/gnu-general-public-license-v2"
      },
      {
        "url": "https://en.wikipedia.org/wiki/GNU_General_Public_License"
      },
      {
        "url": "https://opensource.org/licenses/GPL-2.0"
      }
    ]
}

All the above queries the objects via an extension method, when querying multiple objects its worth reusing the parsed query so it's not parsed over and over again:

Code

IStructureQuery query = StructureQL.Parse("{id,name,links:{url} }");
var result = listOfJObjects.Select(json => json.Query(query));
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on DotJEM.StructureQL:

Package Downloads
DotJEM.StructureQL.Json

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.25 90 12/15/2022
1.0.24 77 12/15/2022
1.0.22 65 10/7/2022
1.0.21 896 8/24/2022
1.0.20 83 8/23/2022
1.0.19 87 8/23/2022
1.0.18 89 8/23/2022
1.0.17 92 8/23/2022
1.0.16 93 8/23/2022
1.0.15 88 8/23/2022
1.0.14 86 8/23/2022
1.0.13 89 8/23/2022
1.0.12 82 8/23/2022
1.0.11 82 8/23/2022
1.0.10 87 8/23/2022
1.0.8 86 8/22/2022
1.0.0 596 8/22/2022