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

Open Data RDW: Terugroep_actie_status

URL: https://opendata.rdw.nl/Terugroepacties/Open-Data-RDW-Terugroep_actie_status/t49b-isb7

API DOCS: https://dev.socrata.com/foundry/opendata.rdw.nl/t49b-isb7

Dataset ID: t49b-isb7

Category: Terugroepacties


This generates a SodaQuery for the Open Data RDW: Terugroep_actie_status dataset.

Examples

Example 1

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

type

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