Results 8 issues of Chew Choon Keat

```html hello ``` produces ```elm span [ css [ Bp.group-hover [ Tw.text_gray_900 ] ] ] [ text "hello" ] ``` where `group-hover` isn't valid elm function name ref https://tailwindcss.com/docs/hover-focus-and-other-states#styling-based-on-parent-state

followup for https://github.com/hwchase17/langchainjs/pull/691 1. import statement has warning 2. example exits immediately with no output

Getting this in my Github Actions > Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ which states > Node 12 has been out of support since [April 2022](https://github.com/nodejs/Release/#end-of-life-releases),...

The standard elm/json has a nice function [Json.Decode.at](https://package.elm-lang.org/packages/elm/json/latest/Json-Decode#at) ``` elm Json.Decode.at [ "Nightmare", "At" ] Json.Decode.string ``` This PR introduces the counterpart for encoding: `Json.Encode.Extra.at` ```elm encodedValue = (Json.Encode.string "Elm...

``` disk_store-0.4.1/lib/disk_store/reaper.rb:21:in `spawn_for' ``` Would help if either 1. https://github.com/layervault/disk_store/blob/master/disk_store.gemspec#L23 constrain the version of celluloid, e.g. `'< 0.17'` 2. update code to avoid celluloid API changes wdyt?

Closes #12 1. converts `queryOperation.inputs: QueryObjectInput` to `QueryCompositeNonFragmentOutput` 2. then we can `getCompositeDecoder` for our `queryOperation.inputs` 3. update `generateExports` and `generateEncodersAndDecoders` to include our new decoders having a new decoder...

given such a schema ```gql schema { query: query } type query { string(node: Node): String } input Node { name: String child: Node } ``` this works ```gql query...

bug

For pagination and deep linking purposes, I’ll need to persist `Variables` as a url query. This means I need to encode and decode `Variables` values. I see `encodeVariables` already exist...