> ## Documentation Index
> Fetch the complete documentation index at: https://sanvex.narayan-dhakal.com.np/llms.txt
> Use this file to discover all available pages before exploring further.

# Resources

# Linear resources

```php theme={null}
$linear = $manager->resolveDriver('linear');

$linear->issues()->list();
$linear->issues()->create([...]);
$linear->projects()->get(['id' => 'project-id']);
```

## `issues`

| Action   | Description     |
| -------- | --------------- |
| `list`   | List issues     |
| `get`    | Get an issue    |
| `create` | Create an issue |
| `update` | Update an issue |

## `projects`

| Action | Description   |
| ------ | ------------- |
| `list` | List projects |
| `get`  | Get a project |

API: GraphQL at `https://api.linear.app/graphql`

## Local DB

```php theme={null}
$linear->db()->issues()->list();
```

Entity type: `linear_issue`
