with GitLab and Roam Research?
Adds content as a child block to a daily note page in Roam Research (access to encrypted and non encrypted graphs). See the documentation
Add content as a child block to an existing or new page in Roam Research (access to encrypted and non encrypted graphs). See the documentation
Add content underneath an existing block in your Roam Research graph (access to encrypted and non encrypted graphs). See the documentation
Generic append blocks for Roam Research pages. See the documentation
The GitLab API provides programmatic access to your GitLab projects, allowing you to automate common tasks, manage issues, merge requests, and more. With the GitLab API on Pipedream, you can create customized workflows that integrate with other services, streamline your development process, and enhance project management. By leveraging the power of serverless, you can set up triggers for GitLab events and perform actions across a variety of apps without managing infrastructure.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { gitlab: { type: "app", app: "gitlab", } }, async run({steps, $}) { return await axios($, { url: `https://${this.gitlab.$auth.base_api_url}/api/v4/user`, headers: { Authorization: `Bearer ${this.gitlab.$auth.oauth_access_token}`, }, }) }, }) import { axios } from "@pipedream/platform" export default defineComponent({ props: { roamresearch: { type: "app", app: "roamresearch", } }, async run({steps, $}) { const data = { "query": `[:find (rand 20 ?block-uid) . :in $ :where [?e :block/uid ?block-uid] [?e :block/page]]`, } return await axios($, { method: "post", url: `https://api.roamresearch.com/api/graph/${this.roamresearch.$auth.graph_name}/q`, headers: { "X-Authorization": `Bearer ${this.roamresearch.$auth.api_token}`, }, data, }) }, })