We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ccc2b63 + 0dbe1e4 commit d3ba0faCopy full SHA for d3ba0fa
services/concept_insights/v2.js
@@ -87,6 +87,21 @@ ConceptInsightsAccounts.prototype.getAccountsInfo = function(params, callback) {
87
return requestFactory(parameters, callback);
88
};
89
90
+/**
91
+ * Returns a list of graphs that the authenticated user has read access to
92
+ */
93
+ConceptInsightsGraphs.prototype.listGraphs = function(params, callback) {
94
+ var parameters = {
95
+ options: {
96
+ url: '/v2/graphs',
97
+ method: 'GET',
98
+ json: true
99
+ },
100
+ defaultOptions: this._parent._options
101
+ };
102
+ return requestFactory(parameters, callback);
103
+};
104
+
105
/**
106
* Retrieves the metadata for one concept
107
*/
0 commit comments