spinen / laravel-clickup

SPINEN's Laravel Package for ClickUp.
27 stars 14 forks source link

Documentation - Subtasks and closed tasks #3

Closed JeremyBellaiche closed 4 years ago

JeremyBellaiche commented 4 years ago

Hello guys,

To start, I really like your work. It helps me a lot in my research on the Clickup API.

I have few questions :

For example, on this request : https://jsapi.apiary.io/apis/clickup20/reference/0/tasks/get-tasks.html

There is a lot of different parameters I must use and I want to understand if your package allow me to pass these arguments :

Thanks a lot !

Jeremy

jimmypuckett commented 4 years ago

Check the Advanced filtering using "where" section of the README...

https://github.com/spinen/laravel-clickup#advanced-filtering-using-where

I think that is what you are looking for. If not, then please let us know.

robertkent commented 4 years ago

Thanks that's just what I was looking for as well:

auth()->user()->clickup()->teams->first()->tasks()->where('include_closed', true)->get()