Stephen Spalding

Results 15 issues of Stephen Spalding

`(render "{{==}}\n{}" {:foo "bar"})` should render as `"{bar}"`. Currently, it renders as `"bar"` Failing test case: `(deftest test-set-delimiters-with-curly-braces (is (= (render "{{==}}\n{}" {:foo "bar"}) "{bar}")))` See also: https://github.com/fhd/clostache/issues/41

Fails (prints nothing): `{{#photos}} {{thumb.src}} {{/photos}}` Works (prints photo's thumb's src): `{{#photos}} {{#thumb}}{{src}}{{/thumb}} {{/photos}}` First example should work same as second one, but it fails. Failing test case: ``` (deftest...

If you try to iterate over a collection: `{{#things}} {{id}} {{/things}}` But things happens to be a set, nothing gets rendered. See https://github.com/fhd/clostache/issues/36

See https://github.com/fhd/clostache/pull/45/files

See [RFC](https://github.com/graphql/graphql-spec/pull/997)

spec RFC

# Problem Take as a motivating example: ```graphql type Query { animals: [Animal] } interface Animal { name: String } type Dog implements Animal { name: String } type Baiji...

💡 Proposal (RFC 1)

The links in the [examples section of the README](https://github.com/apollographql/embeddable-explorer/tree/main/packages/sandbox#examples-from-the-raw-cdn-hosted-umd-file) return 404

Addresses Issue #5093 This is an incomplete PR (doesn't build yet) that demonstrates a proposed solution to Issue #5093

Remove boilerplate to make "Canceled" more visible

This PR adds the fotoetienne/gqai MCP server Details: Server: https://github.com/fotoetienne/gqai Details: gqai is a lightweight proxy that exposes GraphQL operations as MCP tools. Define tools using regular GraphQL queries/mutations against...