Intercept adds a list of query interceptors to the interceptors stack. A call to `Intercept(f, g, h)` equals to `share.Intercept(f(g(h())))`.
(interceptors ...Interceptor)
| 2321 | // Intercept adds a list of query interceptors to the interceptors stack. |
| 2322 | // A call to `Intercept(f, g, h)` equals to `share.Intercept(f(g(h())))`. |
| 2323 | func (c *ShareClient) Intercept(interceptors ...Interceptor) { |
| 2324 | c.inters.Share = append(c.inters.Share, interceptors...) |
| 2325 | } |
| 2326 | |
| 2327 | // Create returns a builder for creating a Share entity. |
| 2328 | func (c *ShareClient) Create() *ShareCreate { |
nothing calls this directly
no outgoing calls
no test coverage detected