Create Google Mail Feed

Create Google Email feed to ingest emails and email attachments.

Graphlit supports ingesting emails and email attachments from Google Mail.

The createFeed mutation enables the creation of a feed by accepting the feed name, type and email feed parameters and it returns essential details, including the ID, name, state, and type of the newly generated feed.

You will need to opt-in to extracting email attachments from emails, which will be ingested as new content objects, by assigning includeAttachments to true.

Graphlit can either read past emails, newest to oldest, or read new emails with a recurrent feed.

Reading emails from Google requires an OAuth refresh token, which must be requested by your application for the user's email account. Graphlit stores this refresh token, and will use it to request a new user token when reading from the Google email account.

Reading Past Emails

To read past emails, you can set the type to PAST, and optionally set a readLimit if you don't want to read all the past emails in your account.

Mutation:

mutation CreateFeed($feed: FeedInput!) {
  createFeed(feed: $feed) {
    id
    name
    state
    type
  }
}

Variables:

{
  "feed": {
    "type": "EMAIL",
    "email": {
      "type": "GOOGLE_EMAIL",
      "includeAttachments": true,
      "google": {
        "refreshToken": "redacted",
        "type": "PAST"
      },
      "readLimit": 50
    },
    "name": "Google Mail"
  }
}

Response:

{
  "type": "EMAIL",
  "id": "70cf882a-9cd9-45c1-b5a0-88606938248a",
  "name": "Google Mail",
  "state": "ENABLED"
}

Reading New Emails

If you want to continually read new emails, you can assign type field to NEW, and configure the schedulePolicy to repeat reading from the feed every 5 minutes.

Mutation:

mutation CreateFeed($feed: FeedInput!) {
  createFeed(feed: $feed) {
    id
    name
    state
    type
  }
}

Variables:

{
  "feed": {
    "type": "EMAIL",
    "email": {
      "type": "GOOGLE_EMAIL",
      "includeAttachments": true,
      "google": {
        "refreshToken": "redacted",
        "type": "NEW"
      }
    },
    "schedulePolicy": {
      "recurrenceType": "REPEAT",
      "repeatInterval": "PT5M"
    },
    "name": "Google Mail"
  }
}

Response:

{
  "type": "EMAIL",
  "id": "cdd33957-774e-4bfb-a62a-87e0905268b1",
  "name": "Google Mail",
  "state": "ENABLED"
}

Last updated