Jeff Ward
Jeff Ward
Hi @leefj - I'm not familiar with Intellij IDEA, but a brief [google search](https://www.google.com/search?q=intellij+run+configuration+command+line) seems to indicate it can run command line tools. What you do for ascsh is, if...
I've been travelling, I'll check this out in the next couple of days. Thanks!
Fascinating. Since ascsh is a thin wrapper around MXMLC, it knows nothing about source files, and MXMLC provides very few public functions. I wonder why FlashDevelop users (also win32) don't...
Hmm, as an aside, I don't have this problem using ascshd from the commandline in Linux, though that's a obviously different environment.
Hi @tomcode75, Sorry for the late reply. As noted in the top-level README, this project is comprised of a lot of pieces (hxgen, parser, webdemo, etc.) The webdemo shows how...
Hello. Hmm, I'd have to look into subscriptions, I haven't been close to this library for a while. In general, this library is currently only for generating type definitions. But...
Hey, sorry I missed this note. Yeah, the Haxe typedef representation is really similar to the GQL type definition -- well, at least for simple-ish types. For example, if you...
And how about the introspection keywords: https://graphql.org/learn/introspection/ ``` __schema, __type, __typekind, __field, __inputvalue, __enumvalue, __directive ```
@Randonee So, if I understand the [graphql-tag description](https://www.npmjs.com/package/graphql-tag), it looks like it takes a graphql string and generates GraphQL AST? This is exactly what [Parser.hx](https://github.com/jcward/haxe-graphql/blob/master/proj/parser/src/graphql/parser/Parser.hx) does, in pure Haxe. I've...
> it forces the compiler to compile all those dead/orphan class which in turn forces the user to fix all the compiler error there. Well, I think that's the goal:...