Mike Koss

Results 55 comments of Mike Koss

I'm itching to get back to more work on Bolt and address the outstanding PR's I have in flight. I'm hopeful and can return to working on this in the...

Great idea. I've also been thinking about way to make application schema more modular for complex apps. I can see two reasons for splitting up a Bolt file: - Sharing...

Maybe if the import statement does _not_ have an `at` clause - then that just uses the _global_ (common) location. Each app could then `import users`, and reference the same...

The way Bolt does this now, is: ``` type User { age: String | Null; name: String; } ```

Check out the freshly written [guide](https://github.com/firebase/bolt/blob/master/docs/guide.md) for this and other tips.

Bolt uses "test" instead of "matches". Also - the parse does not currently support inline regexp in the syntax - but you can put it in a string (include the...

I look forward to checking it out. Sorry, it's going to take me a couple weeks, as I'm spending most of my time preparing for Google IO this time of...

Continuing the discussion from (closed) PR #42.... There are several approaches to this problem, with different levels of complexity. ### Treat import as file concatenation: ``` import * from './functions.bolt';...

This is an excellent feature request. For most tests, we want to generate a uid for each user that is "opaque" - generally it's not a best practice to compare...