Giter Site home page Giter Site logo

Throw on missing parameters about groq-js HOT 1 OPEN

sanity-io avatar sanity-io commented on June 15, 2024
Throw on missing parameters

from groq-js.

Comments (1)

ryaninvents avatar ryaninvents commented on June 15, 2024

@rexxars The current behavior actually seems right to me. Check out this example which might help explain:

let {parse, evaluate} = require("groq-js")
let query = `constructor.name == $name`
let tree = parse(query)
let value = await evaluate(tree, {dataset: [], params: {$name: 'Array'}})
let data = await value.get();

Note that your query does not have a top-level projection * [...], so you're effectively asking whether [].name == undefined, which is true. If you set query to * [name == $name] then you get an empty array back which also matches expectations.

Your suggestion definitely seems like it would be useful, so it would be nice to have a strictParameters: true setting on the options object in evaluate which would trigger errors for missing params.

from groq-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.