Intercept adds a list of query interceptors to the interceptors stack. A call to `Intercept(f, g, h)` equals to `setting.Intercept(f(g(h())))`.
(interceptors ...Interceptor)
| 2186 | // Intercept adds a list of query interceptors to the interceptors stack. |
| 2187 | // A call to `Intercept(f, g, h)` equals to `setting.Intercept(f(g(h())))`. |
| 2188 | func (c *SettingClient) Intercept(interceptors ...Interceptor) { |
| 2189 | c.inters.Setting = append(c.inters.Setting, interceptors...) |
| 2190 | } |
| 2191 | |
| 2192 | // Create returns a builder for creating a Setting entity. |
| 2193 | func (c *SettingClient) Create() *SettingCreate { |
nothing calls this directly
no outgoing calls
no test coverage detected