If customFields config is empty all related mutations and queries should not be visible by api clients.
You can validate this running make start-main (no changes to schema files)
| jest.mock("dns", () => { | |
| return { | |
| promises: { | |
| Resolver: function() { | |
| return { | |
| resolveTxt: () => { | |
| return ["1.1.1.1","2.2.2.2/28"]; | |
| } | |
| }; | |
| } |
| #!/bin/sh | |
| #Check the Drive Space Used by Cached Files | |
| du -sh /var/cache/apt/archives | |
| #Clean all the log file | |
| #for logs in `find /var/log -type f`; do > $logs; done | |
| logs=`find /var/log -type f` | |
| for i in $logs |
| const StellarSdk = require('stellar-sdk'); | |
| const server = new StellarSdk.Server('https://horizon.stellar.org') | |
| const source = StellarSdk.Keypair.fromSecret('SC...CU'); | |
| const destination = StellarSdk.Keypair.fromPublicKey('GAD...PZR') | |
| StellarSdk.Network.usePublicNetwork();; | |
| server.accounts() | |
| .accountId(source.publicKey()) |
| /* | |
| * parser modified to handle only payments: please check original in https://github.com/orbitlens/stellar-notifier/blob/552b58d976080322abba8833c73567a517c6b250/logic/stream-processor.js | |
| */ | |
| /* eslint-disable no-underscore-dangle */ | |
| import { Transaction } from 'stellar-base'; | |
| import BigNumber from 'bignumber.js'; | |
| const debug = require('debug')('yourproject:stellar:parser'); |
I hereby claim:
To claim this, I am signing this object:
Data Down / Actions Up
Other
http://emberjs.jsbin.com/rwjblue/299/edit?js,output - simplified version of ic-ajax
| #! /usr/bin/env bash | |
| # Variables | |
| APPENV=local | |
| DBHOST=localhost | |
| DBNAME=dbname | |
| DBUSER=dbuser | |
| DBPASSWD=test123 | |
| echo -e "\n--- Mkay, installing now... ---\n" |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| VAGRANTFILE_API_VERSION = "2" | |
| box = 'ubuntu/trusty64' | |
| hostname = 'emberclibox' | |
| domain = 'embertest.local' | |
| ip = '192.168.13.100' | |
| ram = '768' # 512 throws an out of memory exception in npm install -g ember-cli |