diffusion
Version:
Diffusion JavaScript client
20 lines (17 loc) • 629 B
JavaScript
var requireNonNull = require("util/require-non-null");
function FetchQuery(selector,
range,
topicTypes,
withValues,
withProperties,
limit,
maximumResultSize) {
this.selector = requireNonNull(selector, "FetchQuery.selector");
this.range = range;
this.topicTypes = requireNonNull(topicTypes, "FetchQuery.topicTypes");
this.withValues = withValues;
this.withProperties = withProperties;
this.limit = limit;
this.maximumResultSize = maximumResultSize;
}
module.exports = FetchQuery;