Bao Thien Ngo

Results 16 comments of Bao Thien Ngo

https://github.com/yiminghe/async-validator/blob/master/src/rule/type.js#L20 I'm curious as to why the float validator requires the number to not be an integer.

Pretty much the same as #158

@arssycro Have you tried putting the `@GraphQLInputField` annotation on the setters?

Here is an example. ```java @GraphQLMutation(name = "saveCompay", description = "Saves a company.") public CompanyDto saveCompany( @GraphQLArgument(name = "input", description = "The company data to save.") @GraphQLNonNull final CompanyDto input,...

We figured out the problem... we had to have separate annotations on the getter and setter, e.g. ```java @GraphQLQuery(description = FIELD_DESCRIPTION_DBA) public String getDba() { return dba; } @GraphQLInputField(description =...

Haha, my use case is worse, it has a colon in the key! {>controlDropdown label=Messages.Plan_Account:Business /} I'm thinking there has to be a way to either escape special characters, or...

``` import React from 'react'; import { action } from '@storybook/addon-actions'; import addons from '@storybook/addons'; import { storiesOf } from '@storybook/react'; import Footer from './Footer'; const channel = addons.getChannel(); channel.on('intl/set_locale',...

Okay, I'm starting to understand how channels work. When you emit an event, it only goes to the "other side"; in other words, if you're inside of the manager, the...

Wait, so those people on Facebook who I thought deleted their accounts were actually just deactivated? Ohhh... that makes me seem kind of a jerk for cleaning out my relationship...

Yah, Swagger is probably the tool of choice; can't go wrong with that. If we're using Swagger, then the work here is not so much creating JSON input/output, but is...