Joey Zhao

Results 62 issues of Joey Zhao

I am using `react-native run-android` to run this example on a emulator but got below error: ![screen shot 2017-03-26 at 8 51 25 am](https://cloud.githubusercontent.com/assets/3355579/24326402/84a31e2c-1201-11e7-9c45-0ea0bf889e76.png) Is there anything wrong in the...

I use `nonNull` to define my scalar but other validation is not checked. It seems that `nonNull` skips all other check. ``` const Source = string('Source') .nonNull() .min(1) .max(10) .regex(/[A-Z]/)...

I am using `pipeline.yml` to define all build steps and I want one of the build step to be run only when there is a pull request to master branch....

I have a pipeline.yml for buildkite CI which is: ``` steps: - label: "Test" command: test.sh skip: "$BUILDKITE_BRANCH == 'mybranch'" ``` I want to skip the build step if the...

I created a PR on github but I found the env var `BUILDKITE_PULL_REQUEST_BASE_BRANCH` is not set during sub-sequence commits on that PR.

I am trying to build a graphql subscription with serverless architecture. I wonder whether it supports this mode?

Based on the announcement https://blog.ethereum.org/2022/06/21/testnet-deprecation, Rinkeby is depreciated. Is there a way to use other testnet for this demo?

I use pouchdb api to replica a database from `couchdb` in a nodejs app. Below is the source code: ``` const getRemoteDB = () => new PouchDB('http://admin:123456@localhost:5984/products'); db.replicate .from(getRemoteDB(), {...

Does this library support sending transaction to Ehtereum network via metamask? I can see it support connects to metamask but can't find how to send transaction.

I am using this library in frontend to interact with smart contract from ethereum network. I need to sign a transaction when calling smart contract methods. But I can't find...