src/main/com/intellij/lang/jsgraphql/types/schema/SchemaElementChildrenContainer.java [92:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Builder child(String key, GraphQLSchemaElement child) {
      // we allow null here to make the actual nodes easier
      if (child == null) {
        return this;
      }
      children.computeIfAbsent(key, (k) -> new ArrayList<>());
      children.get(key).add(child);
      return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/com/intellij/lang/jsgraphql/types/language/NodeChildrenContainer.java [92:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Builder child(String key, Node child) {
      // we allow null here to make the actual nodes easier
      if (child == null) {
        return this;
      }
      children.computeIfAbsent(key, (k) -> new ArrayList<>());
      children.get(key).add(child);
      return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



