Results 9 issues of Jan Aagaard Meier

I'd like to generate a schema like this: ```graphql type Connection { edges: [Edge!]! pageInfo: PageInfo! } ``` Specifying that edges will never be null, and that the array will...

Here, the primary key on bar references the primary key on foo ```sql CREATE TABLE foo (id uuid primary key); CREATE TABLE bar (id uuid primary key references foo(id)); ```...

1. Which driver are you using and version of it (Ex: PostgreSQL 10.0): postgresql 11, running on RDS aurora 2. Which TablePlus build number are you using (the number on...

I'm trying to switch out `ts-jest` with `esbuild-jest`, but I'm running into this error: ``` TypeError: globalSetup file must export a function at .../src/__tests__/globalSetup.ts ``` With the following jest config...

- [X] Use a meaningful title for the pull request. Include the name of the package modified. - [X] Test the change in your own code. (Compile and run.) -...

Other Approved
Popular package
Unreviewed

This PR is a redo of https://github.com/aws/aws-cdk/pull/19115 podman does not allow prefixing the endpoint with https when calling `docker login`: ``` fail: docker login --username AWS --password-stdin https://XXX.dkr.ecr.eu-west-1.amazonaws.com exited with...

p2
feature-request
effort/small
pr/needs-community-review
beginning-contributor
pr-linter/exemption-requested

Sample code: ```ts import { Foo } from 'foo' import Bar = Foo console.log(Foo) console.log(Bar) ``` tsc output [playground](https://www.typescriptlang.org/play?target=1&module=1#code/JYWwDg9gTgLgBAbzgMQhOBfOAzKERwDk2ahAUKJLHAEICGUcAvCmmWQMYQB2AzhABsApgDoBEAOYAKVBACUnHv2FjJU+lAVA) ```js "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var foo_1...

### Your environment op-js version: 0.1.8 CLI version: 2.17.0 OS: Ubuntu 22.04.2 LTS ## What happened? Trying to get an item from 1pass using `item.get(id)` I get ``` [ERROR] 2023/05/09...

bug

Suppose I have a function that returns an object. I call the function, and destructure the returned object, to export some of the properties: https://sucrase.io/#compressedCode=H4sIAFEXCWcAA02OQQrDMAwE73rF3pJAX1DoMQ9xXKUNpFKRZVJa%2FPc47iW6LezMKqokxxS%2BuGHOEn1RQT%2FgB0I9Y88mNU3BrnDLjEKFKDZsVj1hB9Ugf5puEN4wmqn13dFbEmJYV753FwR75BeLp6G6%2BPNWc%2FyNbQilWutLtAMzFIeLnQAAAA%3D%3D The destructuring is wrapped in...