public Builder location()

in graphql-error-types/src/main/java/com/netflix/graphql/types/errors/TypedGraphQLError.java [249:257]


        public Builder location(@Nullable SourceLocation location) {
            if (location != null) {
                if (this.locations == null) {
                    this.locations = new ArrayList<>();
                }
                this.locations.add(location);
            }
            return this;
        }