• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

graphql / graphql-js / 3652
98%

Build:
DEFAULT BRANCH: master
Ran 01 Aug 2018 07:53AM UTC
Jobs 1
Files 199
Run time 18s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
3652

push

travis-ci

web-flow
Allows to add schema definition missing in the original schema (#1441)

Split out from #1438

Allows to inject directives and types into SDL-based schema:

```js
import { GrapQLDateTime } from 'somepackage';
let schema = new GraphQLSchema({
  types: [GrapQLDateTime],
});

const ast = parse(`
  type Query {
    timestamp: DateTime
  }
`);
schema = extendSchema(schema, ast);
```

```js
let schema = new GraphQLSchema({
  directives: [
    new GraphQLDirective({
      name: 'onSchema',
      locations: ['SCHEMA'],
    }),
  ],
});

const ast = parse(`
  schema @onSchema {
    query: Foo
  }
  type Foo {
    bar: String
  }
`);
schema = extendSchema(schema, ast);
```

3582 of 3822 branches covered (93.72%)

10779 of 10915 relevant lines covered (98.75%)

1152.19 hits per line

Jobs
ID Job ID Ran Files Coverage
1 3652.1 01 Aug 2018 07:53AM UTC 0
98.75
Travis Job 3652.1
Source Files on build 3652
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #3652
  • a1ee52a4 on github
  • Prev Build on master (#3648)
  • Next Build on master (#3656)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc