This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"graph" : { | |
"label" : "NPG sequence pipeline job dependency graph", | |
"metadata": { "description": "Perhaps we could put pipeline defaults here?" }, | |
"edges" : [...], | |
"nodes" : [ | |
{ | |
"id" : "pipeline_start", | |
"label" : "pipeline_start", | |
"metadata": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ariadne | |
from ariadne import QueryType, ObjectType, UnionType | |
import pymongo | |
from aiodataloader import DataLoader | |
from collections import defaultdict | |
config = { | |
'host': 'IPADDRESS', | |
'port': 'PORT', | |
'user': 'USER', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Catalyst::Authentication::Store::ElasticSearch; | |
use strict; | |
use warnings; | |
use Moose; | |
use MooseX::NonMoose; | |
use Catalyst::Exception; | |
use Catalyst::Authentication::Store::ElasticSearch::User; # The default user storage class |