constructor()

in backend/src/models/GraphCreator.js [6:22]


    constructor({nodes, edges, graphName, dropGraph}={}){
        this.nodefiles = nodes;
        this.edgefiles = edges;
        this.dropGraph = dropGraph;
        this.graphName = graphName;
        this.nodes = [];
        this.edges = [];
        this.query = {
            graph: {
                drop: null,
                create: null,
            },
            labels:[],
            nodes: [],
            edges: []
        };
    }