Mark Fulton

Results 136 comments of Mark Fulton

> I wouldn't say it's out of scope, but the Deno team doesn't have bandwidth to work on this currently. I'll be more than happy to accept contributions though. I...

Using the name of the first query isn't a great experience when a tab contains multiple queries in. I also sometimes want to name the tab differently than the first...

> @mfulton26 agreed, it is not ideal, do you want to create a feature request? I thought I did. It got marked as a duplicate of this issue: https://github.com/graphql/graphiql/issues/3406#issuecomment-2308288268

A way to access other rows via user defined functions could be helpful too.

Example using window functions: ```sql select year, month, fixes, fixes - lag(fixes) over (order by year, month) as increase, from the_table; ``` source: https://stackoverflow.com/questions/24691462/postgresql-calculate-difference-between-rows References: - https://www.postgresql.org/docs/current/tutorial-window.html - https://www.postgresql.org/docs/current/functions-window.html -...

I don't think delaying an async response is needed as this is already pretty straight forward with `async` & `await`: ```ts await timeout(waitOptions); return newPerson(); ``` I'm not against the...

@manisha1997 has a change been made to support retries for network errors (e.g. `ECONNRESET`)? last I checked `twilio-node` only retries 429 errors.

update: a new version of dprint isn't published yet but changes are in to format XML https://github.com/dprint/dprint/pull/995

Converting sounds like a good feature to me but I think having the opposite should take priority to have deno work with package-lock.json as part of its Node compatibility for...

This has been opened now for a bit. Any ideas on if it is ready to be merged and released?