Skip to main content
Latest
variable RDWQuery
import { RDWQuery } from "https://deno.land/x/rdw_data@0.7.0/src/providers/UitvoeringGebruiksgegevensPerUitgave.ts";

Open Data RDW: Uitvoering Gebruiksgegevens Per Uitgave

URL: https://opendata.rdw.nl/Typegoedkeuring/Open-Data-RDW-Uitvoering-Gebruiksgegevens-Per-Uitg/2822-t8sx

API DOCS: https://dev.socrata.com/foundry/opendata.rdw.nl/2822-t8sx

Dataset ID: 2822-t8sx

Category: Typegoedkeuring


This generates a SodaQuery for the Open Data RDW: Uitvoering Gebruiksgegevens Per Uitgave dataset.

Examples

Example 1

const data = await RDWQuery()
  .where(Where.like(Fields.EegUitvoeringscode, "some_value")
  .limit(10)
  .offset(0);
  .execute();

type

(auth?: AuthOpts, opts?: Options) => unknown